EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
NaNOutputFault.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CONTROL_NANOUTPUTFAULT_HPP
2 #define ORG_EEROS_CONTROL_NANOUTPUTFAULT_HPP
3 
4 #include <eeros/core/Fault.hpp>
5 
6 namespace eeros {
7  namespace control {
8  class NaNOutputFault : public eeros::Fault {
9 
10  public:
12  explicit NaNOutputFault(std::string m);
13  virtual ~NaNOutputFault() throw();
14  };
15  };
16 };
17 
18 #endif // ORG_EEROS_CONTROL_NANOUTPUTFAULT_HPP
virtual ~NaNOutputFault()
Definition: NaNOutputFault.cpp:9
Definition: Config.hpp:14
NaNOutputFault()
Definition: NaNOutputFault.cpp:5
Definition: Fault.hpp:9
Definition: NaNOutputFault.hpp:8