#include <Timer.hpp>
Static Public Member Functions | |
static void | Reset () |
static void | Print (std::string message) |
static void | PrintAndReset (std::string message) |
Static Private Attributes | |
static time_t | StartTime |
Usage:
Timer::Reset(); //do something Timer::PrintAndReset("First thing"); //do something else Timer::Print("Other thing");
which outputs (for example):
First thing time: 10s Other thing time: 2s
Definition at line 54 of file Timer.hpp.
void Timer::Reset | ( | ) | [static] |
Reset the timer.
Definition at line 36 of file Timer.cpp.
References StartTime.
Referenced by PrintAndReset().
void Timer::Print | ( | std::string | message | ) | [static] |
Print the elapsed time (to std::cout and the Log file (under logging-level 2) preceded by the message provided.
message |
Definition at line 41 of file Timer.cpp.
References StartTime.
Referenced by PrintAndReset().
void Timer::PrintAndReset | ( | std::string | message | ) | [static] |
time_t Timer::StartTime [static, private] |