8#if __has_include("defs.h")
29 static LARGE_INTEGER freq;
30 LARGE_INTEGER tbeg, tend;
Simple stopwatch timer (yet another one!)
Definition stopwatch.h:20
double msecLap()
Return number of milliseconds elapsed from start.
Definition stopwatch.cpp:42
double msecEnd()
Return total duration in milliseconds between start and stop.
Definition stopwatch.cpp:51
stopwatch()
Constructor.
Definition stopwatch.cpp:16
void start()
Start the stopwatch.
Definition stopwatch.cpp:25
void stop()
Stop the stopwatch.
Definition stopwatch.cpp:32