viz1090/Input.h
nathan af9cfce3ff massive refactor to c++ in progress, doesn't build now
Former-commit-id: bbd3fe3c0438b9f8d2188b8d1f5ffc70616a789f
Former-commit-id: d19da520563adeb80996df92c65ba5e1e6785596
2020-03-07 17:22:20 -08:00

17 lines
194 B
C++

#ifndef INPUT_H
#define INPUT
#include "AircraftData.h"
#include "View.h"
class Input {
public:
void getInput();
//should input know about view?
Input(View *view);
View *view;
};
#endif