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