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

53 lines
1.3 KiB
C++
Vendored

// ======================================================================
// \title ActiveNoArgsPortsOnly.cpp
// \author [user name]
// \brief cpp file for ActiveNoArgsPortsOnly component implementation class
// ======================================================================
#include "ActiveNoArgsPortsOnly.hpp"
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
ActiveNoArgsPortsOnly ::
ActiveNoArgsPortsOnly(const char* const compName) :
ActiveNoArgsPortsOnlyComponentBase(compName)
{
}
ActiveNoArgsPortsOnly ::
~ActiveNoArgsPortsOnly()
{
}
// ----------------------------------------------------------------------
// Handler implementations for typed input ports
// ----------------------------------------------------------------------
void ActiveNoArgsPortsOnly ::
noArgsAsync_handler(FwIndexType portNum)
{
// TODO
}
void ActiveNoArgsPortsOnly ::
noArgsGuarded_handler(FwIndexType portNum)
{
// TODO
}
U32 ActiveNoArgsPortsOnly ::
noArgsReturnGuarded_handler(FwIndexType portNum)
{
// TODO return
}
U32 ActiveNoArgsPortsOnly ::
noArgsReturnSync_handler(FwIndexType portNum)
{
// TODO return
}