- autodetect available input devices
[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 public:
9         void handleCode(int code);
10         eRCDeviceInputDev(eRCInputEventDriver *driver);
11         const char *getDescription() const;
12
13         const char *getKeyDescription(const eRCKey &key) const;
14         int getKeyCompatibleCode(const eRCKey &key) const;
15 };
16
17 #endif