diff options
author | kamel5 <kamel5 (at) gmx (dot) net> | 2019-01-07 12:57:45 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-05 13:03:50 +0200 |
commit | 0bc43eb96d39def7e931202146c3b83a2aa4e58a (patch) | |
tree | a25dac9c1869c00d187c4c7605328df8813aa456 /switchtimer.h | |
parent | 65248babe1380b5b9e214ffb30ccf7f3d4c02096 (diff) | |
download | vdr-plugin-tvguideng-0bc43eb96d39def7e931202146c3b83a2aa4e58a.tar.gz vdr-plugin-tvguideng-0bc43eb96d39def7e931202146c3b83a2aa4e58a.tar.bz2 |
Changes for VDR-2.3.1
Diffstat (limited to 'switchtimer.h')
-rw-r--r-- | switchtimer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/switchtimer.h b/switchtimer.h index eea468f..ba1479a 100644 --- a/switchtimer.h +++ b/switchtimer.h @@ -11,6 +11,20 @@ public: tChannelID channelID; int switchMinsBefore; int announceOnly; + cSwitchTimer(const cSwitchTimer &SwitchTimer) + { + *this = SwitchTimer; + }; + cSwitchTimer& operator= (const cSwitchTimer &SwitchTimer) + { + this->eventID = SwitchTimer.eventID; + this->startTime = SwitchTimer.startTime; + this->channelID = SwitchTimer.channelID; + this->switchMinsBefore = SwitchTimer.switchMinsBefore; + this->announceOnly = SwitchTimer.announceOnly; + + return *this; + }; cSwitchTimer(void); cSwitchTimer(const cEvent* Event); bool Parse(const char *s); |