summaryrefslogtreecommitdiff
path: root/remote.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-12-08 14:30:32 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-12-08 14:30:32 +0100
commitfb16fbafaadcd6bc0a8fbde20c8434a69bef0f10 (patch)
tree0687196922d2428cc98b0cb303462b8b8989f18e /remote.h
parenta40c8b8a98ed026b27f18a5e6c6f8bfae5f6068b (diff)
downloadvdr-fb16fbafaadcd6bc0a8fbde20c8434a69bef0f10.tar.gz
vdr-fb16fbafaadcd6bc0a8fbde20c8434a69bef0f10.tar.bz2
KBD active by default; no more 'ncurses' necessary for KBD1.1.19
Diffstat (limited to 'remote.h')
-rw-r--r--remote.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/remote.h b/remote.h
index 2aeec78c..1c087d0f 100644
--- a/remote.h
+++ b/remote.h
@@ -4,13 +4,14 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remote.h 1.21 2002/12/01 10:39:10 kls Exp $
+ * $Id: remote.h 1.22 2002/12/08 13:37:02 kls Exp $
*/
#ifndef __REMOTE_H
#define __REMOTE_H
#include <stdio.h>
+#include <termios.h>
#include <time.h>
#include "keys.h"
#include "thread.h"
@@ -50,16 +51,14 @@ class cRemotes : public cList<cRemote> {};
extern cRemotes Remotes;
-#if defined REMOTE_KBD
-
class cKbdRemote : public cRemote, private cThread {
private:
+ bool active;
+ struct termios savedTm;
virtual void Action(void);
public:
cKbdRemote(void);
virtual ~cKbdRemote();
};
-#endif
-
#endif //__REMOTE_H