blob: d905eaa364f52737e58ada258380f79f6562ce41 [file] [log] [blame]
Brian Silvermanba3de7e2013-05-08 16:18:15 -07001#ifndef AOS_ATOM_CODE_INPUT_JOYSTICKS_INPUT_H_
2#define AOS_ATOM_CODE_INPUT_JOYSTICKS_INPUT_H_
3
4#include "aos/common/input/driver_station_data.h"
5
6namespace aos {
7namespace input {
8
9class JoystickInput {
10 public:
11 void Run();
12
13 private:
14 virtual void RunIteration(const driver_station::Data &data) = 0;
15};
16
17} // namespace input
18} // namespace aos
19
20#endif // AOS_ATOM_CODE_INPUT_JOYSTICKS_INPUT_H_