aboutsummaryrefslogtreecommitdiff
path: root/lib/driver/rcinput.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2003-10-17 15:36:42 +0000
committerFelix Domke <tmbinc@elitedvb.net>2003-10-17 15:36:42 +0000
commitd63d2c3c6cbbd574dda4f8b00ebe6c661735edd5 (patch)
tree84d0cacfd0b6c1241c236c7860f7cbd7f26901bb /lib/driver/rcinput.h
downloadenigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.tar.gz
enigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.zip
import of enigma2
Diffstat (limited to 'lib/driver/rcinput.h')
-rw-r--r--lib/driver/rcinput.h17
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