fprime/Svc/FatalHandler/FatalHandler.hpp
bocchino 6c87c334fd Revise header files
Replace 'typedef' with 'using'
2021-08-02 14:10:19 -07:00

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