#include <notimer.h>
Public Member Functions | |
Construction / destruction | |
NoTimer () | |
default constructor More... | |
NoTimer (const NoTimer &) | |
copy constructor More... | |
NoTimer & | operator= (const NoTimer &) |
assignment operator More... | |
virtual | ~NoTimer () |
Control | |
virtual void | reset () |
initialize timer More... | |
virtual void | start () |
start timer More... | |
virtual Real | stop () |
stop timer More... | |
virtual TYPE | type () |
return type of timer More... | |
Access | |
virtual Real | time () const |
virtual Real | lastTime () const |
Public Member Functions inherited from Timer | |
Timer () | |
default constructor More... | |
Timer (const Timer &old) | |
copy constructor More... | |
Timer & | operator= (const Timer &old) |
assignment operator More... | |
virtual | ~Timer () |
void | getLastTimes (Real *userTime, Real *systemTime, Real *realTime) const |
return accounted time. get accounted user, system, or real time when ticks were updated last More... | |
Real | realTimeLast () const |
return accounted real time without rechecking the clock More... | |
Additional Inherited Members | |
Public Types inherited from Timer | |
enum | TYPE { OFF = 0, USER_TIME = 1, WALLCLOCK_TIME = 2 } |
types of timers More... | |
Protected Types inherited from Timer | |
enum | { RESET, STOPPED, RUNNING } |
status of the timer More... | |
Protected Attributes inherited from Timer | |
enum soplex::Timer:: { ... } | status |
status of the timer More... | |
|
virtual |
|
virtual |
|
virtual |
return type of timer
Implements Timer.
Definition at line 73 of file notimer.h.
References Timer::OFF.