#include <wx/stopwatch.h>
The wxStopWatch class allow you to measure time intervals.
For example, you may use it to measure the time elapsed by some function:
Since wxWidgets 2.9.3 this class uses QueryPerformanceCounter()
function under MSW to measure the elapsed time. This provides higher precision than the usual timer functions.
Public Member Functions | |
wxStopWatch () | |
Constructor. More... | |
void | Pause () |
Pauses the stop watch. More... | |
void | Resume () |
Resumes the stop watch which had been paused with Pause(). More... | |
void | Start (long milliseconds=0) |
(Re)starts the stop watch with a given initial value. More... | |
long | Time () const |
Returns the time in milliseconds since the start (or restart) or the last call of Pause(). More... | |
wxLongLong | TimeInMicro () const |
Returns elapsed time in microseconds. More... | |
wxStopWatch::wxStopWatch | ( | ) |
Constructor.
This starts the stop watch.
void wxStopWatch::Pause | ( | ) |
void wxStopWatch::Resume | ( | ) |
Resumes the stop watch which had been paused with Pause().
void wxStopWatch::Start | ( | long | milliseconds = 0 | ) |
long wxStopWatch::Time | ( | ) | const |
Returns the time in milliseconds since the start (or restart) or the last call of Pause().
wxLongLong wxStopWatch::TimeInMicro | ( | ) | const |
Returns elapsed time in microseconds.
This method is similar to Time() but returns the elapsed time in microseconds and not milliseconds. Notice that not all platforms really can measure times with this precision.