diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-20 11:18:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-20 11:18:09 +0200 |
commit | 0161197360fb2090dd189daa672871695bc2fef2 (patch) | |
tree | ef4c8d1da99e0a896886f28c93e70d0756f53a95 /dvbapi.h | |
parent | 9f9d6a8a9354960eb9c42f9c45ed507f05804ff4 (diff) | |
download | vdr-0161197360fb2090dd189daa672871695bc2fef2.tar.gz vdr-0161197360fb2090dd189daa672871695bc2fef2.tar.bz2 |
Moved the cEITScanner out of dvbapi.h/.c, into the new eitscan.h/.c
Diffstat (limited to 'dvbapi.h')
-rw-r--r-- | dvbapi.h | 19 |
1 files changed, 1 insertions, 18 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.h 1.71 2002/05/19 10:13:34 kls Exp $ + * $Id: dvbapi.h 1.72 2002/05/20 10:58:20 kls Exp $ */ #ifndef __DVBAPI_H @@ -280,21 +280,4 @@ public: static int CurrentVolume(void) { return PrimaryDvbApi ? PrimaryDvbApi->volume : 0; } }; -class cEITScanner { -private: - enum { ActivityTimeout = 60, - ScanTimeout = 20 - }; - time_t lastScan, lastActivity; - int currentChannel, lastChannel; - int numTransponders, *transponders; - bool TransponderScanned(cChannel *Channel); -public: - cEITScanner(void); - ~cEITScanner(); - bool Active(void) { return currentChannel; } - void Activity(void); - void Process(void); - }; - #endif //__DVBAPI_H |