summaryrefslogtreecommitdiff
path: root/epg.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-03-06 11:27:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-03-06 11:27:08 +0100
commit18d3851b72d35b6c658dd1fb71acff1a88c2c58a (patch)
tree72cb249c33c548391c058481d4b214b269054aa7 /epg.h
parentb845ef01b56c18cab44c3992fd6cae9af2f6467a (diff)
downloadvdr-18d3851b72d35b6c658dd1fb71acff1a88c2c58a.tar.gz
vdr-18d3851b72d35b6c658dd1fb71acff1a88c2c58a.tar.bz2
Fixed assigning events to timers (they no longer get "stuck")
Diffstat (limited to 'epg.h')
-rw-r--r--epg.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epg.h b/epg.h
index 81866fd3..c8636f7f 100644
--- a/epg.h
+++ b/epg.h
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.h 1.11 2004/02/29 14:10:06 kls Exp $
+ * $Id: epg.h 1.12 2004/03/06 10:09:40 kls Exp $
*/
#ifndef __EPG_H
@@ -49,9 +49,11 @@ public:
const char *ShortText(void) const { return shortText; }
const char *Description(void) const { return description; }
time_t StartTime(void) const { return startTime; }
+ time_t EndTime(void) const { return startTime + duration; }
int Duration(void) const { return duration; }
time_t Vps(void) const { return vps; }
bool HasTimer(void) const;
+ bool IsRunning(bool OrAboutToStart = false) const;
const char *GetDateString(void) const;
const char *GetTimeString(void) const;
const char *GetEndTimeString(void) const;