Hermes
Loading...
Searching...
No Matches
timer.h
1#ifndef HERMES_COMMON_TIMER_H
2#define HERMES_COMMON_TIMER_H
3
4#include <chrono>
5#include <ctime>
6
7namespace hermes {
8
9// *********************************************************************************************************************
10// Timer
11// *********************************************************************************************************************
13class Timer {
14public:
15 // *******************************************************************************************************************
16 // CONSTRUCTORS
17 // *******************************************************************************************************************
20 Timer() { tick(); }
21 // *******************************************************************************************************************
22 // METHODS
23 // *******************************************************************************************************************
26 void tick() { lastTick = std::chrono::high_resolution_clock::now(); }
29 double tack() {
30 auto curTick = std::chrono::high_resolution_clock::now();
31 return std::chrono::duration<double, std::milli>(curTick - lastTick)
32 .count();
33 }
37 double tackTick() {
38 double elapsed = tack();
39 tick();
40 return elapsed;
41 }
42
43private:
44 std::chrono::high_resolution_clock::time_point lastTick;
45};
46
47} // hermes namespace
48
49#endif // HERMES_COMMON_TIMER_H
Helper class to measure time.
Definition timer.h:13
Timer()
default constructor.
Definition timer.h:20
void tick()
tick
Definition timer.h:26
double tackTick()
get same as calling tack first and then tick
Definition timer.h:37
double tack()
get
Definition timer.h:29
Holds 2-dimensional integer index coordinates.
Definition index.h:50