summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-08-26 15:02:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-08-26 15:02:00 +0200
commitf4d75d4141c9cb09dc09688cbc5f4a79015a318e (patch)
tree39ca3d175521f520f5ae9ed2f018102d73acb3d3 /config.h
parent6f6891082885d6c68f1a7efd80f99a0c907a9a4b (diff)
downloadvdr-f4d75d4141c9cb09dc09688cbc5f4a79015a318e.tar.gz
vdr-f4d75d4141c9cb09dc09688cbc5f4a79015a318e.tar.bz2
Implemented GetNextActiveTimer()
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index 36f89167..70f35740 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.65 2001/08/26 14:08:23 kls Exp $
+ * $Id: config.h 1.66 2001/08/26 14:46:53 kls Exp $
*/
#ifndef __CONFIG_H
@@ -152,9 +152,7 @@ public:
time_t StopTime(void);
void SetRecording(bool Recording);
void SetPending(bool Pending);
- static cTimer *GetMatch(void);
static int TimeToInt(int t);
- static time_t Day(time_t t);
static int ParseDay(const char *s);
static const char *PrintDay(int d);
};
@@ -257,6 +255,8 @@ public:
class cTimers : public cConfig<cTimer> {
public:
cTimer *GetTimer(cTimer *Timer);
+ cTimer *GetMatch(void);
+ cTimer *GetNextActiveTimer(void);
};
class cCommands : public cConfig<cCommand> {};