EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
Block.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CONTROL_BLOCK_HPP_
2 #define ORG_EEROS_CONTROL_BLOCK_HPP_
3 
4 #include <string>
6 
7 namespace eeros {
8  namespace control {
9 
10  class Block : public Runnable {
11  public:
12  virtual void setName(std::string name);
13  virtual std::string getName();
14 
15  private:
16  std::string name;
17  };
18 
19  };
20 };
21 
22 #endif /* ORG_EEROS_CONTROL_BLOCK_HPP_ */
Definition: Config.hpp:14
Definition: Runnable.hpp:6
Definition: Block.hpp:10
virtual std::string getName()
Definition: Block.cpp:9
virtual void setName(std::string name)
Definition: Block.cpp:5