diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-03-06 12:01:17 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-03-06 12:01:17 +0100 |
commit | ab9af4cea16b6d3875e60b7809c02f3b6794e6b4 (patch) | |
tree | c7f2d476e2d010372b1bb8bd94b36cd5d6f026dd /channels.h | |
parent | 3e09f8565dde0e362549a1896352753483f6615c (diff) | |
download | vdr-ab9af4cea16b6d3875e60b7809c02f3b6794e6b4.tar.gz vdr-ab9af4cea16b6d3875e60b7809c02f3b6794e6b4.tar.bz2 |
Added support for ATSC devices
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.h 2.8 2010/02/21 14:05:49 kls Exp $ + * $Id: channels.h 2.9 2010/03/06 11:54:17 kls Exp $ */ #ifndef __CHANNELS_H @@ -172,6 +172,7 @@ public: const char *Parameters(void) const { return parameters; } const cLinkChannels* LinkChannels(void) const { return linkChannels; } const cChannel *RefChannel(void) const { return refChannel; } + bool IsAtsc(void) const { return cSource::IsAtsc(source); } bool IsCable(void) const { return cSource::IsCable(source); } bool IsSat(void) const { return cSource::IsSat(source); } bool IsTerr(void) const { return cSource::IsTerr(source); } |