diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-06 10:25:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-06 10:25:42 +0200 |
commit | 962596f4abc3790ac0f3f317079a3362210fff8f (patch) | |
tree | b9428aea092f90731b389604fcc8540070dbf556 /dvbdevice.h | |
parent | b7615a7ae144789da14d32019b2f86fc4bf6dcef (diff) | |
download | vdr-962596f4abc3790ac0f3f317079a3362210fff8f.tar.gz vdr-962596f4abc3790ac0f3f317079a3362210fff8f.tar.bz2 |
Modified channel handling; full DiSEqC support
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index acf569e0..df7aa035 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.11 2002/09/28 12:21:36 kls Exp $ + * $Id: dvbdevice.h 1.12 2002/10/06 08:57:24 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -61,8 +61,12 @@ public: // Channel facilities private: + int source; int frequency; + const char *diseqcCommands; + bool IsTunedTo(const cChannel *Channel) const; public: + virtual bool ProvidesSource(int Source) const; virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL) const; protected: virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView); |