Merge commit 'origin/translations' into experimental
[enigma2.git] / lib / driver / rcinput.h
1 #ifndef __rcdbox_h
2 #define __rcdbox_h
3
4 #include <lib/driver/rc.h>
5
6 class eRCDeviceInputDev: public eRCDevice
7 {
8         int iskeyboard;
9 public:
10         void handleCode(long code);
11         eRCDeviceInputDev(eRCInputEventDriver *driver);
12         const char *getDescription() const;
13         void setExclusive(bool);
14 };
15
16 #endif