summaryrefslogtreecommitdiff
path: root/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/timer.h b/timer.h
new file mode 100644
index 0000000..b2d9aa5
--- /dev/null
+++ b/timer.h
@@ -0,0 +1,32 @@
+#ifndef __TVGUIDE_TIMER_H
+#define __TVGUIDE_TIMER_H
+
+// --- cMyTime -------------------------------------------------------------
+
+class cMyTime {
+ private:
+ time_t t;
+ time_t tStart;
+ time_t tStop;
+ public:
+ cMyTime(){};
+ virtual ~cMyTime(void);
+ 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 GetStop() {return tStop;};
+ 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