~ubuntu-branches/ubuntu/saucy/gfan/saucy-proposed

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
#ifndef TIMER_H_INCLUDED
#define TIMER_H_INCLUDED

#include <stdio.h>

class Timer
{
  static class Timer *timers;
  class Timer *next;
  const char *s;
  int skip;
  int ons;
  int n;
  double total;
  int timerStart;
  int timerStartSec;
  bool doTimingThisTime();
 public:
  Timer(const char* s, int skip=10);
  void on();
  void off();
  void print(FILE *f);
  static void printList(FILE *f=stderr);
};

#if 1

class TimerScope
{
  Timer *timer;
 public:
  TimerScope(Timer *timer){this->timer=timer;timer->on();}
  ~TimerScope(){timer->off();}
};

#else

class TimerScope
{
 public:
  TimerScope(Timer *timer){}
  ~TimerScope(){}
};

#endif

#endif