Scheduler
programTime.h
Go to the documentation of this file.
1 
10 #include <chrono>
11 #include <ctime>
12 
13 namespace Utils
14 {
15 
17 {
18 public:
19  static void init();
20  static double elapsedTimeInSeconds();
21 private:
22  static clock_t tp;
23 };
24 
25 }
26 
27 
static void init()
Definition: programTime.cpp:17
Definition: context.h:16
static double elapsedTimeInSeconds()
Definition: programTime.cpp:22