mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
18 lines
408 B
C++
18 lines
408 B
C++
// ======================================================================
|
|
// FatalHandler.hpp
|
|
// Standardization header for FatalHandler
|
|
// ======================================================================
|
|
|
|
#ifndef Svc_FatalHandler_HPP
|
|
#define Svc_FatalHandler_HPP
|
|
|
|
#include "Svc/FatalHandler/FatalHandlerComponentImpl.hpp"
|
|
|
|
namespace Svc {
|
|
|
|
using FatalHandler = FatalHandlerComponentImpl;
|
|
|
|
}
|
|
|
|
#endif
|