libcosmos
Linux C++ System Programming Library
|
A type to measure elapsed time based on a given clock type. More...
#include <StopWatch.hxx>
Public Types | |
using | InitialMark = NamedBool<struct mark_t, false> |
Public Member Functions | |
StopWatch (const InitialMark do_mark=InitialMark{}) | |
Construct and optionally set an initial mark(). | |
void | mark () |
Set a new stop mark to compare against. | |
size_t | elapsedMs () const |
Returns the elapsed milliseconds since the active mark. | |
std::chrono::milliseconds | elapsed () const |
TimeSpec< CLOCK > | currentMark () const |
Returns the currently set mark (undefined if mark() was never called!). | |
Protected Attributes | |
TimeSpec< CLOCK > | m_mark |
Clock< CLOCK > | m_clock |
A type to measure elapsed time based on a given clock type.
Definition at line 10 of file StopWatch.hxx.
using cosmos::StopWatch< CLOCK >::InitialMark = NamedBool<struct mark_t, false> |
Definition at line 13 of file StopWatch.hxx.
|
inlineexplicit |
Construct and optionally set an initial mark().
Definition at line 18 of file StopWatch.hxx.
|
inline |
Returns the currently set mark (undefined if mark() was never called!).
Definition at line 38 of file StopWatch.hxx.
|
inline |
Definition at line 33 of file StopWatch.hxx.
|
inline |
Returns the elapsed milliseconds since the active mark.
Definition at line 29 of file StopWatch.hxx.
|
inline |
Set a new stop mark to compare against.
Definition at line 24 of file StopWatch.hxx.
|
protected |
Definition at line 45 of file StopWatch.hxx.
|
protected |
Definition at line 44 of file StopWatch.hxx.