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
7
namespace
hermes {
8
9
// *********************************************************************************************************************
10
// Timer
11
// *********************************************************************************************************************
13
class
Timer
{
14
public
:
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
43
private
:
44
std::chrono::high_resolution_clock::time_point lastTick;
45
};
46
47
}
// hermes namespace
48
49
#endif
// HERMES_COMMON_TIMER_H
hermes::Timer
Helper class to measure time.
Definition
timer.h:13
hermes::Timer::Timer
Timer()
default constructor.
Definition
timer.h:20
hermes::Timer::tick
void tick()
tick
Definition
timer.h:26
hermes::Timer::tackTick
double tackTick()
get same as calling tack first and then tick
Definition
timer.h:37
hermes::Timer::tack
double tack()
get
Definition
timer.h:29
hermes::Index2
Holds 2-dimensional integer index coordinates.
Definition
index.h:50
hermes
common
timer.h
Generated by
1.9.8