Scheduler
time.h
Go to the documentation of this file.
1 
10 #ifndef TIME_H
11 #define TIME_H
12 
13 namespace Scheduler
14 {
15 
16 class Time
17 {
18 public:
19  static double getTime();
20  static void updateTime(double t);
21  static double getEndTime();
22 private:
23  static double time;
24 };
25 
26 }
27 
28 #endif
static void updateTime(double t)
Definition: time.cpp:21
static double getTime()
Definition: time.cpp:16
static double getEndTime()