EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
Block1o.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CONTROL_BLOCK1O_HPP_
2 #define ORG_EEROS_CONTROL_BLOCK1O_HPP_
3 
7 
8 namespace eeros {
9  namespace control {
10 
11  template < typename T = double >
12  class Block1o : public Block {
13  public:
14  Block1o() : out(this) {
15  this->out.getSignal().clear();
16  }
17 
18  virtual Output<T>& getOut() {
19  return out;
20  }
21 
22  protected:
24  };
25 
26  };
27 };
28 
29 #endif /* ORG_EEROS_CONTROL_BLOCK1O_HPP_ */
Definition: Block1o.hpp:12
Definition: Config.hpp:14
Definition: Block.hpp:10
Output< T > out
Definition: Block1o.hpp:23
Definition: Output.hpp:11
virtual Output< T > & getOut()
Definition: Block1o.hpp:18
Block1o()
Definition: Block1o.hpp:14