diff options
| author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 14:34:31 +0200 |
|---|---|---|
| committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 14:34:31 +0200 |
| commit | 6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf (patch) | |
| tree | 76b2d886960165022d1498ac1dc37698c296924b /timer.h | |
| parent | 107f3f945fc72e75fa2979a6011dd8507fa8ac77 (diff) | |
| download | vdr-plugin-tvguide-6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf.tar.gz vdr-plugin-tvguide-6b3eda282f90ec1bf1dcb556ed0074ea34efcfaf.tar.bz2 | |
Change cMyTime to cTimeManager
Diffstat (limited to 'timer.h')
| -rw-r--r-- | timer.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 |
