dbf-halloween2015

view src/timer.h @ 0:50683c78264e

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:09:12 +0200
parents
children
line source
1 #ifndef TIMER_H_
2 #define TIMER_H_
4 unsigned long get_time_msec(void);
5 void sleep_msec(unsigned long msec);
7 double get_time_sec(void);
8 void sleep_sec(double sec);
11 class Timer {
12 private:
13 unsigned long start_time, pause_time;
15 public:
16 Timer();
18 void reset();
20 void start();
21 void stop();
23 bool is_running() const;
25 unsigned long get_msec() const;
26 double get_sec() const;
27 };
29 #endif // TIMER_H_