F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
TrapHandler.hpp
Go to the documentation of this file.
1 #ifndef FW_TRAP_HPP
2 #define FW_TRAP_HPP
3 #include <FpConfig.hpp>
4 
5 namespace Fw {
13  class TrapHandler {
14  public:
15  TrapHandler() {};
16  virtual ~TrapHandler() {};
23  virtual void doTrap(U32 trap) = 0;
24  };
25 }
26 #endif
C++-compatible configuration header for fprime configuration.
virtual void doTrap(U32 trap)=0
destructor
virtual ~TrapHandler()
constructor
Definition: TrapHandler.hpp:16