EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ComediDevice.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_HAL_COMEDIDEVICE_HPP_
2 #define ORG_EEROS_HAL_COMEDIDEVICE_HPP_
3 
4 #include <string>
5 #include <comedilib.h>
6 
7 namespace eeros {
8  namespace hal {
9 
10  class ComediDevice {
11  public:
12  ComediDevice(std::string deviceNode);
13  virtual ~ComediDevice();
14 
15  comedi_t* getDeviceHandle();
16 
17  private:
18  comedi_t *it;
19  };
20  };
21 };
22 
23 #endif /* ORG_EEROS_HAL_COMEDIDEVICE_HPP_ */
ComediDevice(std::string deviceNode)
Definition: ComediDevice.cpp:6
comedi_t * getDeviceHandle()
Definition: ComediDevice.cpp:17
virtual ~ComediDevice()
Definition: ComediDevice.cpp:13
Definition: ComediDevice.hpp:10