Alex exoskeleton
ALEX SoftwareDocumentation
InputDevice.h
Go to the documentation of this file.
1 
13 #ifndef InputDevice_H_INCLUDED
14 #define InputDevice_H_INCLUDED
15 #include <iostream>
16 
21 class InputDevice {
22  private:
23  public:
24  InputDevice();
30  virtual void updateInput() = 0;
31 };
32 #endif
virtual void updateInput()=0
pure virtual method to be implemented by specific input devices and used by the virtual robot object ...
Abstract class representing any input device to be used in a Robot object.
Definition: InputDevice.h:21