summaryrefslogtreecommitdiff
path: root/interface.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-04-29 13:10:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2015-04-29 13:10:06 +0200
commit2b9e988dd563d66a8a341a359d17c51032cbca40 (patch)
tree000f0ba47147dd6ef649abfab57220b06f361f83 /interface.h
parentb6af7a9cf93cb1f1dd433328cc1d9b6b82447e74 (diff)
downloadvdr-2b9e988dd563d66a8a341a359d17c51032cbca40.tar.gz
vdr-2b9e988dd563d66a8a341a359d17c51032cbca40.tar.bz2
The SVDRP port now accepts multiple concurrent connections
Diffstat (limited to 'interface.h')
-rw-r--r--interface.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/interface.h b/interface.h
index 2b3f979a..4131cf3a 100644
--- a/interface.h
+++ b/interface.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: interface.h 1.31 2004/05/01 11:11:13 kls Exp $
+ * $Id: interface.h 4.1 2015/04/28 11:15:11 kls Exp $
*/
#ifndef __INTERFACE_H
@@ -13,17 +13,14 @@
#include "config.h"
#include "remote.h"
#include "skins.h"
-#include "svdrp.h"
class cInterface {
private:
bool interrupted;
- cSVDRP *SVDRP;
bool QueryKeys(cRemote *Remote, cSkinDisplayMenu *DisplayMenu);
public:
- cInterface(int SVDRPport = 0);
+ cInterface(void);
~cInterface();
- bool HasSVDRPConnection(void) { return SVDRP && SVDRP->HasConnection(); }
void Interrupt(void) { interrupted = true; }
eKeys GetKey(bool Wait = true);
eKeys Wait(int Seconds = 0, bool KeepChar = false);