EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
Harmonic.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_TASK_HARMONIC_HPP_
2 #define ORG_EEROS_TASK_HARMONIC_HPP_
3 
5 
6 namespace eeros {
7  namespace task {
8 
9  class Harmonic : public Runnable {
10  public:
11  Harmonic(Runnable &task, int n = 1);
12  Harmonic(Runnable *task, int n = 1);
13  Runnable *getTask();
14  virtual void run();
15  private:
16  int n, k;
17  Runnable *task;
18  };
19 
20  }
21 }
22 
23 #endif // ORG_EEROS_TASK_HARMONIC_HPP_
Harmonic(Runnable &task, int n=1)
Definition: Harmonic.cpp:6
Runnable * getTask()
Definition: Harmonic.cpp:12
Definition: Config.hpp:14
Definition: Runnable.hpp:6
virtual void run()
Definition: Harmonic.cpp:16
Definition: Harmonic.hpp:9