viz1090/Input.h

17 lines
194 B
C
Raw Normal View History

#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