summaryrefslogtreecommitdiff
path: root/inc/MoniTool_TimerSentry.lxx
blob: 4716a464aeffa8b1eec31e00e7f10b00e3905e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <MoniTool_Timer.hxx>

//=======================================================================
//function : MoniTool_TimerSentry
//purpose  : 
//=======================================================================

inline MoniTool_TimerSentry::MoniTool_TimerSentry (const Standard_CString cname)
  : myTimer ( MoniTool_Timer::Timer ( cname ) )
{
  myTimer->Start();
}

//=======================================================================
//function : MoniTool_TimerSentry
//purpose  : 
//=======================================================================

inline MoniTool_TimerSentry::MoniTool_TimerSentry (const Handle(MoniTool_Timer)& timer)
{
  myTimer = timer;
  myTimer->Start();
}

//=======================================================================
//function : Destroy
//purpose  : make stop for corresponding timer before destroying
//=======================================================================

inline void MoniTool_TimerSentry::Destroy() 
{
  if ( ! myTimer.IsNull() ) myTimer->Stop();
}

//=======================================================================
//function : Timer
//purpose  : 
//=======================================================================

inline Handle(MoniTool_Timer) MoniTool_TimerSentry::Timer() const
{
  return myTimer;
}
  
//=======================================================================
//function : Stop
//purpose  : 
//=======================================================================

inline void MoniTool_TimerSentry::Stop() 
{
  if ( ! myTimer.IsNull() ) myTimer->Stop();
  myTimer.Nullify();
}