F´ Flight Software - C/C++ Documentation
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
4 
5 namespace Fw {
14 class TrapHandler {
15  public:
16  TrapHandler() {};
17  virtual ~TrapHandler() {};
18 
22  virtual void doTrap(U32 trap) = 0;
23 };
24 } // namespace Fw
25 #endif
virtual void doTrap(U32 trap)=0
destructor
virtual ~TrapHandler()
constructor
Definition: TrapHandler.hpp:17
Implementation of malloc based allocator.