Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef __JAUS_EXTRAS_CONTROLLERS_KEYBOARD__H
00042 #define __JAUS_EXTRAS_CONTROLLERS_KEYBOARD__H
00043
00044 #include "jaus/extras/controllers/controldevice.h"
00045 #include <cxutils/keyboard.h>
00046
00047 namespace JAUS
00048 {
00056 class JAUS_EXTRAS_DLL Keyboard : public ControlDevice
00057 {
00058 public:
00059
00060 Keyboard();
00061
00062 virtual ~Keyboard();
00063
00064 virtual void Shutdown() { ControlDevice::Shutdown();}
00065
00066 virtual bool LoadSettings(const std::string& filename);
00067
00068 virtual void CheckServiceStatus(const unsigned int timeSinceLastCheckMs);
00069 protected:
00070 CxUtils::Keyboard mKeyboard;
00071 };
00072 }
00073
00074 #endif //__JAUS_EXTRAS_CONTROLLERS_KEYBOARD__H
00075