summaryrefslogtreecommitdiff
path: root/timer.h
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-11 14:34:31 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-11 14:34:31 +0200
commit6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf (patch)
tree76b2d886960165022d1498ac1dc37698c296924b /timer.h
parent107f3f945fc72e75fa2979a6011dd8507fa8ac77 (diff)
downloadvdr-plugin-tvguide-6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf.tar.gz
vdr-plugin-tvguide-6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf.tar.bz2
Change cMyTime to cTimeManager
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/timer.h b/timer.h
index af7f1a3..35f28c7 100644
--- a/timer.h
+++ b/timer.h
@@ -1,18 +1,18 @@
-#ifndef __TVGUIDE_TIMER_H
-#define __TVGUIDE_TIMER_H
+#ifndef __TVGUIDE_TIMEMANAGER_H
+#define __TVGUIDE_TIMEMANAGER_H
#include <vdr/tools.h>
-// --- cMyTime -------------------------------------------------------------
+// --- cTimeManager -------------------------------------------------------------
-class cMyTime {
+class cTimeManager {
private:
time_t t;
time_t tStart;
time_t tEnd;
public:
- cMyTime(){};
- virtual ~cMyTime(void);
+ cTimeManager(){};
+ virtual ~cTimeManager(void);
static cString printTime(time_t displayTime);
void Now();
time_t GetNow() { return t; };
@@ -49,4 +49,4 @@ class cTimeInterval {
cTimeInterval *Union(cTimeInterval *interval);
};
-#endif //__TVGUIDE_TIMER_H
+#endif //__TVGUIDE_TIMEMANAGER_H