diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-04-04 09:52:15 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-04-04 09:52:15 +0200 |
commit | d5aa5f7294c27ccd4fa516afbc16793965e73e73 (patch) | |
tree | 93f2dfe688350c9b44a8dfef857d9ddc664e8af1 /dvbdevice.h | |
parent | 0ac4d23cab27ba035ce692bef12961ed35a52766 (diff) | |
download | vdr-d5aa5f7294c27ccd4fa516afbc16793965e73e73.tar.gz vdr-d5aa5f7294c27ccd4fa516afbc16793965e73e73.tar.bz2 |
The new function cDevice::DeviceType() returns a string identifying the type of the given device
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index c53a2086..6dca3859 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 2.25 2012/03/13 10:11:15 kls Exp $ + * $Id: dvbdevice.h 2.26 2012/04/04 09:48:00 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -138,6 +138,7 @@ public: int Adapter(void) const { return adapter; } int Frontend(void) const { return frontend; } virtual bool Ready(void); + virtual cString DeviceType(void) const; virtual cString DeviceName(void) const; static bool BondDevices(const char *Bondings); ///< Bonds the devices as defined in the given Bondings string. |