fpp/compiler/tools/fpp-to-cpp/test/component/impl/ActiveExternalStateMachines.template.ref.cpp
2025-04-15 11:40:29 -06:00

42 lines
1.2 KiB
C++
Vendored

// ======================================================================
// \title ActiveExternalStateMachines.cpp
// \author [user name]
// \brief cpp file for ActiveExternalStateMachines component implementation class
// ======================================================================
#include "ActiveExternalStateMachines.hpp"
namespace ExternalSm {
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
ActiveExternalStateMachines ::
ActiveExternalStateMachines(const char* const compName) :
ActiveExternalStateMachinesComponentBase(compName)
{
}
ActiveExternalStateMachines ::
~ActiveExternalStateMachines()
{
}
// ----------------------------------------------------------------------
// Overflow hook implementations for external state machines
// ----------------------------------------------------------------------
void ActiveExternalStateMachines ::
sm5_stateMachineOverflowHook(
const ExternalSm::ActiveExternalStateMachines_S2_Interface::ActiveExternalStateMachines_S2_Signals signal,
const Fw::SmSignalBuffer& data
)
{
// TODO
}
}