diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-06 12:13:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-06 12:13:55 +0200 |
commit | ff5df8f29852a1c968a2797e13e494ae882bed26 (patch) | |
tree | ff44d8420a562fd9fe6f2deb325c01d1ba4975b6 /channels.h | |
parent | bc22ed879c05836e0f1d5e40f0f4a052d1f9d511 (diff) | |
download | vdr-ff5df8f29852a1c968a2797e13e494ae882bed26.tar.gz vdr-ff5df8f29852a1c968a2797e13e494ae882bed26.tar.bz2 |
Fixed the cChannel copy constructor
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 1.32 2005/05/28 13:57:08 kls Exp $ + * $Id: channels.h 1.33 2005/08/06 11:23:32 kls Exp $ */ #ifndef __CHANNELS_H @@ -181,6 +181,7 @@ public: bool IsTerr(void) const { return cSource::IsTerr(source); } tChannelID GetChannelID(void) const { return tChannelID(source, nid, (nid || tid) ? tid : Transponder(), sid, rid); } int Modification(int Mask = CHANNELMOD_ALL); + void CopyTransponderData(const cChannel *Channel); bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH); bool SetCableTransponderData(int Source, int Frequency, int Modulation, int Srate, int CoderateH); bool SetTerrTransponderData(int Source, int Frequency, int Bandwidth, int Modulation, int Hierarchy, int CodeRateH, int CodeRateL, int Guard, int Transmission); |