fpp/compiler/tools/fpp-to-cpp/test/component/impl/ActiveEvents.template.ref.cpp
2023-12-12 08:47:18 -08:00

180 lines
3.3 KiB
C++

// ======================================================================
// \title ActiveEvents.cpp
// \author [user name]
// \brief cpp file for ActiveEvents component implementation class
// ======================================================================
#include "ActiveEvents.hpp"
#include "FpConfig.hpp"
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
ActiveEvents ::
ActiveEvents(const char* const compName) :
ActiveEventsComponentBase(compName)
{
}
ActiveEvents ::
~ActiveEvents()
{
}
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------
void ActiveEvents ::
noArgsAsync_handler(NATIVE_INT_TYPE portNum)
{
// TODO
}
void ActiveEvents ::
noArgsGuarded_handler(NATIVE_INT_TYPE portNum)
{
// TODO
}
U32 ActiveEvents ::
noArgsReturnGuarded_handler(NATIVE_INT_TYPE portNum)
{
// TODO return
}
U32 ActiveEvents ::
noArgsReturnSync_handler(NATIVE_INT_TYPE portNum)
{
// TODO return
}
void ActiveEvents ::
noArgsSync_handler(NATIVE_INT_TYPE portNum)
{
// TODO
}
void ActiveEvents ::
typedAsync_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
void ActiveEvents ::
typedAsyncAssert_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
void ActiveEvents ::
typedAsyncBlockPriority_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
void ActiveEvents ::
typedAsyncDropPriority_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
void ActiveEvents ::
typedGuarded_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}
F32 ActiveEvents ::
typedReturnGuarded_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedReturnPortStrings::StringSize80& str2,
const E& e,
const A& a,
const S& s
)
{
// TODO return
}
F32 ActiveEvents ::
typedReturnSync_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedReturnPortStrings::StringSize80& str2,
const E& e,
const A& a,
const S& s
)
{
// TODO return
}
void ActiveEvents ::
typedSync_handler(
NATIVE_INT_TYPE portNum,
U32 u32,
F32 f32,
bool b,
const Ports::TypedPortStrings::StringSize80& str1,
const E& e,
const A& a,
const S& s
)
{
// TODO
}