summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/TM_Daemon/Profile_Code.h
blob: e469e5500b6211bbf6a90a36114a74deae59fd20 (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
#ifndef PROFILE_CODEH
#define PROFILE_CODEH

#include "ace/High_Res_Timer.h"
#include <fstream>

class ACE_High_Res_Timer;

class Profile_Code
{
public:
  Profile_Code (const std::string& file);

  Profile_Code (){};

  ~Profile_Code ();

  void start ();

  void stop ();

private:

  /// The high resolution Timer ...
  ACE_High_Res_Timer time;

  std::ofstream file_;

  /// state of the timer
  bool running_;
};



#endif