EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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() { }
15 
16  virtual Output<T>& getOut() {
17  return out;
18  }
19 
20  protected:
22  };
23 
24  };
25 };
26 
27 #endif /* ORG_EEROS_CONTROL_BLOCK1O_HPP_ */
Definition: Block1o.hpp:12
Definition: Block.hpp:10
Output< T > out
Definition: Block1o.hpp:21
Definition: Output.hpp:10
virtual Output< T > & getOut()
Definition: Block1o.hpp:16
Block1o()
Definition: Block1o.hpp:14