LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Pause.h
1 #ifndef PAUSE_H_
2 #define PAUSE_H_
3 
4 #include "Routine.h"
5 #include "Timer.h"
6 
7 class Pause : public Routine
8 {
9 public:
10  Pause(double time);
11 
12  virtual void Run();
13 
14  virtual bool Completed();
15 private:
16  double m_time;
17 
18  Timer m_timer;
19 };
20 
21 #endif