diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-03-20 13:12:07 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-03-20 13:12:07 +0100 |
commit | 14a38b1dba6f6cc9d0ec4dc46e001b7367616073 (patch) | |
tree | f09ba7c0aee8d338f21716c57d83c76ee18ca2c8 /timers.h | |
parent | 456ded045c228accff613c0ebaf7833d8164e3ec (diff) | |
download | vdr-14a38b1dba6f6cc9d0ec4dc46e001b7367616073.tar.gz vdr-14a38b1dba6f6cc9d0ec4dc46e001b7367616073.tar.bz2 |
Improved falling back to normal recording if the VPS data hasn't been seen for more than 30 seconds
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 1.16 2005/03/20 10:55:49 kls Exp $ + * $Id: timers.h 1.17 2005/03/20 12:36:25 kls Exp $ */ #ifndef __TIMERS_H @@ -38,6 +38,7 @@ private: int lifetime; char file[MaxFileName]; char *summary; + const cSchedule *schedule; const cEvent *event; public: cTimer(bool Instant = false, bool Pause = false); @@ -75,7 +76,7 @@ public: bool Expired(void); time_t StartTime(void) const; time_t StopTime(void) const; - void SetEvent(const cEvent *Event); + void SetEvent(const cSchedule *Schedule, const cEvent *Event); void SetRecording(bool Recording); void SetPending(bool Pending); void SetInVpsMargin(bool InVpsMargin); |