diff options
author | louis <louis.braun@gmx.de> | 2013-05-26 11:38:05 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-26 11:38:05 +0200 |
commit | 812fd1b7a5aeb67d4139255a6df8230c420ea57e (patch) | |
tree | 36e0408bf9f4191b37cf11bd9dd01e381d105f6e /timer.h | |
parent | 9f47ab764efc83d8bf94f25c4badeb6e4c91c649 (diff) | |
download | vdr-plugin-tvguide-812fd1b7a5aeb67d4139255a6df8230c420ea57e.tar.gz vdr-plugin-tvguide-812fd1b7a5aeb67d4139255a6df8230c420ea57e.tar.bz2 |
whitespace cleanup
Diffstat (limited to 'timer.h')
-rw-r--r-- | timer.h | 46 |
1 files changed, 23 insertions, 23 deletions
@@ -4,30 +4,30 @@ // --- cMyTime -------------------------------------------------------------
class cMyTime {
- private:
- time_t t;
- time_t tStart;
- time_t tEnd;
- public:
- cMyTime(){};
- virtual ~cMyTime(void);
+ private:
+ time_t t;
+ time_t tStart;
+ time_t tEnd;
+ public:
+ cMyTime(){};
+ virtual ~cMyTime(void);
static cString printTime(time_t displayTime);
- void Now();
- void AddStep(int step);
- bool DelStep(int step);
- void SetTime(time_t newTime);
- time_t Get() {return t;};
- time_t GetStart() {return tStart;};
- time_t GetEnd() {return tEnd;};
- cString GetCurrentTime();
- cString GetDate();
- cString GetWeekday();
- time_t getPrevPrimetime(time_t current);
- time_t getNextPrimetime(time_t current);
- bool tooFarInPast(time_t current);
- int GetTimelineOffset();
- time_t GetRounded();
- void debug();
+ void Now();
+ void AddStep(int step);
+ bool DelStep(int step);
+ void SetTime(time_t newTime);
+ time_t Get() {return t;};
+ time_t GetStart() {return tStart;};
+ time_t GetEnd() {return tEnd;};
+ cString GetCurrentTime();
+ cString GetDate();
+ cString GetWeekday();
+ time_t getPrevPrimetime(time_t current);
+ time_t getNextPrimetime(time_t current);
+ bool tooFarInPast(time_t current);
+ int GetTimelineOffset();
+ time_t GetRounded();
+ void debug();
};
#endif //__TVGUIDE_TIMER_H
\ No newline at end of file |