F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TrapHandler.hpp
Go to the documentation of this file.
1 #ifndef FW_TRAP_HPP
2 #define FW_TRAP_HPP
4 
5 namespace Fw {
13 class TrapHandler {
14  public:
15  TrapHandler() {};
16  virtual ~TrapHandler() {};
17 
23  virtual void doTrap(U32 trap) = 0;
24 };
25 } // namespace Fw
26 #endif
virtual void doTrap(U32 trap)=0
destructor
virtual ~TrapHandler()
constructor
Definition: TrapHandler.hpp:16