EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
DummyRealInput.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_HAL_DUMMYREALINPUT_HPP_
2 #define ORG_EEROS_HAL_DUMMYREALINPUT_HPP_
3 
4 #include <string>
6 
7 namespace eeros {
8  namespace hal {
9 
10  class DummyRealInput : public ScalablePeripheralInput<double> {
11  public:
12  DummyRealInput(std::string id, double scale = 1, double offset = 0);
13  virtual double get();
14  };
15  };
16 };
17 
18 #endif /* ORG_EEROS_HAL_DUMMYREALINPUT_HPP_ */
Definition: ScalablePeripheralInput.hpp:11
Definition: DummyRealInput.hpp:10
double scale
Definition: ScalablePeripheralInput.hpp:22
double offset
Definition: ScalablePeripheralInput.hpp:23
DummyRealInput(std::string id, double scale=1, double offset=0)
Definition: DummyRealInput.cpp:5