fprime/Svc/FatalHandler/FatalHandlerComponentCommonImpl.cpp
2021-07-14 12:54:01 -07:00

46 lines
1.1 KiB
C++

// ======================================================================
// \title FatalHandlerImpl.cpp
// \author tcanham
// \brief cpp file for FatalHandler component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
//
// ======================================================================
#include <Svc/FatalHandler/FatalHandlerComponentImpl.hpp>
#include "Fw/Types/BasicTypes.hpp"
namespace Svc {
// ----------------------------------------------------------------------
// Construction, initialization, and destruction
// ----------------------------------------------------------------------
FatalHandlerComponentImpl ::
FatalHandlerComponentImpl(
const char *const compName
) : FatalHandlerComponentBase(compName)
{
}
void FatalHandlerComponentImpl ::
init(
const NATIVE_INT_TYPE instance
)
{
FatalHandlerComponentBase::init(instance);
}
FatalHandlerComponentImpl ::
~FatalHandlerComponentImpl()
{
}
} // end namespace Svc