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

170 lines
3.1 KiB
C++
Vendored

// ======================================================================
// \title PassiveParams.cpp
// \author [user name]
// \brief cpp file for PassiveParams component implementation class
// ======================================================================
#include "PassiveParams.hpp"
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
PassiveParams ::
PassiveParams(const char* const compName) :
PassiveParamsComponentBase(compName)
{
}
PassiveParams ::
~PassiveParams()
{
}
// ----------------------------------------------------------------------
// Handler implementations for typed input ports
// ----------------------------------------------------------------------
Fw::String PassiveParams ::
noArgsAliasStringReturnSync_handler(FwIndexType portNum)
{
// TODO return
}
void PassiveParams ::
noArgsGuarded_handler(FwIndexType portNum)
{
// TODO
}
U32 PassiveParams ::
noArgsReturnGuarded_handler(FwIndexType portNum)
{
// TODO return
}
U32 PassiveParams ::
noArgsReturnSync_handler(FwIndexType portNum)
{
// TODO return
}
Fw::String PassiveParams ::
noArgsStringReturnSync_handler(FwIndexType portNum)
{
// TODO return
}
void PassiveParams ::
noArgsSync_handler(FwIndexType portNum)
{
// TODO
}
void PassiveParams ::
typedAliasGuarded_handler(
FwIndexType portNum,
AliasPrim1 u32,
AliasPrim2 f32,
AliasBool b,
const Fw::StringBase& str2,
const AliasEnum& e,
const AliasArray& a,
const AliasStruct& s
)
{
// TODO
}
AliasPrim2 PassiveParams ::
typedAliasReturnSync_handler(
FwIndexType portNum,
AliasPrim1 u32,
AliasPrim2 f32,
AliasBool b,
const Fw::StringBase& str2,
const AliasEnum& e,
const AliasArray& a,
const AliasStruct& s
)
{
// TODO return
}
Fw::String PassiveParams ::
typedAliasStringReturnSync_handler(
FwIndexType portNum,
AliasPrim1 u32,
AliasPrim2 f32,
AliasBool b,
const Fw::StringBase& str2,
const AliasEnum& e,
const AliasArray& a,
const AnotherAliasStruct& s
)
{
// TODO return
}
void PassiveParams ::
typedGuarded_handler(
FwIndexType portNum,
U32 u32,
F32 f32,
bool b,
const Fw::StringBase& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
F32 PassiveParams ::
typedReturnGuarded_handler(
FwIndexType portNum,
U32 u32,
F32 f32,
bool b,
const Fw::StringBase& str2,
const E& e,
const A& a,
const S& s
)
{
// TODO return
}
F32 PassiveParams ::
typedReturnSync_handler(
FwIndexType portNum,
U32 u32,
F32 f32,
bool b,
const Fw::StringBase& str2,
const E& e,
const A& a,
const S& s
)
{
// TODO return
}
void PassiveParams ::
typedSync_handler(
FwIndexType portNum,
U32 u32,
F32 f32,
bool b,
const Fw::StringBase& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}