EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Runnable.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_RUNNABLE_HPP_
2 #define ORG_EEROS_CORE_RUNNABLE_HPP_
3 
4 namespace eeros {
5 
6  class Runnable {
7  public:
8  virtual ~Runnable() { }
9  virtual void run() = 0;
10  };
11 
12 };
13 
14 #endif // ORG_EEROS_CORE_RUNNABLE_HPP_
virtual void run()=0
virtual ~Runnable()
Definition: Runnable.hpp:8
Definition: Runnable.hpp:6