MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include <MsqTimer.hpp>
Public Member Functions | |
FunctionTimer (StopWatchCollection::Key key) | |
void | start () |
~FunctionTimer () | |
Private Member Functions | |
void * | operator new (size_t size) |
FunctionTimer (const FunctionTimer &) | |
FunctionTimer & | operator= (const FunctionTimer &) |
Private Attributes | |
StopWatchCollection::Key | mKey |
Definition at line 202 of file MsqTimer.hpp.
MBMesquite::FunctionTimer::FunctionTimer | ( | StopWatchCollection::Key | key | ) | [inline] |
Definition at line 205 of file MsqTimer.hpp.
: mKey( key ) {}
MBMesquite::FunctionTimer::~FunctionTimer | ( | ) | [inline] |
Definition at line 210 of file MsqTimer.hpp.
References MBMesquite::GlobalStopWatches, mKey, and MBMesquite::StopWatchCollection::stop().
{ GlobalStopWatches.stop( mKey ); }
MBMesquite::FunctionTimer::FunctionTimer | ( | const FunctionTimer & | ) | [private] |
void* MBMesquite::FunctionTimer::operator new | ( | size_t | size | ) | [private] |
FunctionTimer& MBMesquite::FunctionTimer::operator= | ( | const FunctionTimer & | ) | [private] |
void MBMesquite::FunctionTimer::start | ( | ) | [inline] |
Definition at line 206 of file MsqTimer.hpp.
References MBMesquite::GlobalStopWatches, mKey, and MBMesquite::StopWatchCollection::start().
{ GlobalStopWatches.start( mKey ); }
Definition at line 216 of file MsqTimer.hpp.
Referenced by start(), and ~FunctionTimer().