fpp/compiler/tools/fpp-to-cpp/test/component/impl/QueuedTelemetry.template.ref.cpp
Robert L. Bocchino Jr b765cb4b34 Revise generated C++ code
Replace uses of native types for port numbers
2024-02-27 15:28:45 -08:00

180 lines
3.3 KiB
C++

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