diff options
Diffstat (limited to 'timer.h')
-rw-r--r-- | timer.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,17 +7,18 @@ class cMyTime { private:
time_t t;
time_t tStart;
- time_t tStop;
+ 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 GetStop() {return tStop;};
+ time_t GetEnd() {return tEnd;};
cString GetCurrentTime();
cString GetDate();
cString GetWeekday();
|