summaryrefslogtreecommitdiff
path: root/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/timer.h b/timer.h
index 5966ac5..6491458 100644
--- a/timer.h
+++ b/timer.h
@@ -15,6 +15,7 @@ class cMyTime {
virtual ~cMyTime(void);
static cString printTime(time_t displayTime);
void Now();
+ time_t GetNow() { return t; };
void AddStep(int step);
bool DelStep(int step);
void SetTime(time_t newTime);
@@ -29,6 +30,7 @@ class cMyTime {
bool tooFarInPast(time_t current);
int GetTimelineOffset();
time_t GetRounded();
+ bool NowVisible(void);
void debug();
};