diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:35:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:35:43 +0000 |
| commit | fc2f5b2cd655f1391f2abda1b39e37cdec98a951 (patch) | |
| tree | 312efcea86a319de407a7c314fb981fb1c71019a /lib/driver/rcinput.h | |
| download | enigma2-fc2f5b2cd655f1391f2abda1b39e37cdec98a951.tar.gz enigma2-fc2f5b2cd655f1391f2abda1b39e37cdec98a951.zip | |
Initial revision
Diffstat (limited to 'lib/driver/rcinput.h')
| -rw-r--r-- | lib/driver/rcinput.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/driver/rcinput.h b/lib/driver/rcinput.h new file mode 100644 index 00000000..c13eafb1 --- /dev/null +++ b/lib/driver/rcinput.h @@ -0,0 +1,17 @@ +#ifndef __rcdbox_h +#define __rcdbox_h + +#include <lib/driver/rc.h> + +class eRCDeviceInputDev: public eRCDevice +{ +public: + void handleCode(int code); + eRCDeviceInputDev(eRCInputEventDriver *driver); + const char *getDescription() const; + + const char *getKeyDescription(const eRCKey &key) const; + int getKeyCompatibleCode(const eRCKey &key) const; +}; + +#endif |
