summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-01-13 12:14:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2007-01-13 12:14:51 +0100
commit7751b6abb0b90a3d0961856e76c67b85aab66cf5 (patch)
tree04c4276125ccb9ba9d0ad3a80175330e10140218 /device.h
parent87dd5139ff6666d64e7e343bcff632b342c4c814 (diff)
downloadvdr-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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/device.h b/device.h
index 63af410b..60dc73e1 100644
--- a/device.h
+++ b/device.h
@@ -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; }