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