crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

profiler (295B)


      1 #ifndef _PROFILER_
      2 #define _PROFILER_
      3 
      4 #include "sys/sys"
      5 #include "timestamp/timestamp"
      6 #include "ThreadsAndMutexes/mutex/mutex"
      7 
      8 class Profiler {
      9 public:
     10     Profiler (char const *f);
     11     ~Profiler();
     12 private:
     13     char const *fname;
     14     Timestamp timestamp;
     15     static FILE *outf;
     16 };
     17 
     18 #endif
     19