EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Output.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CONTROL_OUTPUT_HPP_
2 #define ORG_EEROS_CONTROL_OUTPUT_HPP_
3 
5 
6 namespace eeros {
7  namespace control {
8 
9  template < typename T = double >
10  class Output {
11 
12  public:
13  virtual Signal<T>& getSignal() {
14  return signal;
15  }
16 
17  private:
18  Signal<T> signal;
19  };
20  };
21 };
22 
23 #endif /* ORG_EEROS_CONTROL_OUTPUT_HPP_ */
virtual Signal< T > & getSignal()
Definition: Output.hpp:13
Definition: Output.hpp:10
Definition: Signal.hpp:14