diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-26 13:03:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-26 13:03:14 +0200 |
commit | 6b5e9f56ed5315e7c1afa17940968695fabf3ba0 (patch) | |
tree | 89ef6286bff12e1c7cd289c1d082119e121c601c /device.h | |
parent | 2d3cb812fbcf038cf14a792c375fd866b6420a10 (diff) | |
download | vdr-6b5e9f56ed5315e7c1afa17940968695fabf3ba0.tar.gz vdr-6b5e9f56ed5315e7c1afa17940968695fabf3ba0.tar.bz2 |
Implemented cDevice::ProvidesEIT()
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 6 |
1 files changed, 5 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 2.26 2011/06/02 13:15:31 kls Exp $ + * $Id: device.h 2.27 2011/08/26 12:52:29 kls Exp $ */ #ifndef __DEVICE_H @@ -247,6 +247,10 @@ public: ///< function itself actually returns true. ///< The default implementation always returns false, so a derived cDevice ///< class that can provide channels must implement this function. + virtual bool ProvidesEIT(void) const; + ///< Returns true if this device provides EIT data and thus wants to be tuned + ///< to the channels it can receive regularly to update the data. + ///< The default implementation returns false. virtual int NumProvidedSystems(void) const; ///< Returns the number of individual "delivery systems" this device provides. ///< The default implementation returns 0, so any derived class that can |