InfoVis 2013  1.0
Information Visualisation project - "Mapping Text with Phrase Nets"
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Timer.h
Go to the documentation of this file.
1 #ifndef TIMER_H
2 #define TIMER_H
3 
4 struct StopWatchStruct;
5 
6 class Timer
7 {
8 public:
9  Timer();
10  ~Timer();
11 
12  void startTimer();
13  void stopTimer();
14  double getElapsedTime();
15 
16 private:
17  StopWatchStruct* m_timer;
18 };
19 
20 
21 #endif