EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
TaskList.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_TASK_TASKLIST_HPP_
2 #define ORG_EEROS_TASK_TASKLIST_HPP_
3 
4 #include <vector>
6 
7 namespace eeros {
8  namespace task {
9 
10  class TaskList : public Runnable {
11  public:
12  virtual void run();
13  virtual void add(Runnable *t);
14  virtual void add(Runnable &t);
15  std::vector<Runnable*> tasks;
16  };
17 
18  }
19 }
20 
21 #endif // ORG_EEROS_TASK_TASKLIST_HPP_
std::vector< Runnable * > tasks
Definition: TaskList.hpp:15
Definition: Config.hpp:14
Definition: Runnable.hpp:6
virtual void add(Runnable *t)
Definition: TaskList.cpp:11
virtual void run()
Definition: TaskList.cpp:6
Definition: TaskList.hpp:10