LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
IRobotAction.hpp
1 #ifndef RHESUS_IROBOTACTION_H_
2 #define RHESUS_IROBOTACTION_H_
3 
4 namespace Rhesus
5 {
6 namespace Toolkit
7 {
8 namespace Action
9 {
10 
16  {
17  public:
18  virtual void Run() = 0;
19 
20  };
21 
22 }
23 }
24 }
25 
26 #endif