diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-01-13 12:14:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-01-13 12:14:51 +0100 |
commit | 7751b6abb0b90a3d0961856e76c67b85aab66cf5 (patch) | |
tree | 04c4276125ccb9ba9d0ad3a80175330e10140218 /device.h | |
parent | 87dd5139ff6666d64e7e343bcff632b342c4c814 (diff) | |
download | vdr-7751b6abb0b90a3d0961856e76c67b85aab66cf5.tar.gz vdr-7751b6abb0b90a3d0961856e76c67b85aab66cf5.tar.bz2 |
Added cDevice::HasCi() so that devices with Common Interface can be avoided when tuning to an FTA channel
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.80 2007/01/07 14:38:00 kls Exp $ + * $Id: device.h 1.81 2007/01/13 11:33:57 kls Exp $ */ #ifndef __DEVICE_H @@ -314,6 +314,8 @@ private: time_t startScrambleDetection; cCamSlot *camSlot; public: + virtual bool HasCi(void); + ///< Returns true if this device has a Common Interface. void SetCamSlot(cCamSlot *CamSlot); ///< Sets the given CamSlot to be used with this device. cCamSlot *CamSlot(void) const { return camSlot; } |