fpp/compiler/tools/fpp-to-cpp/test/component/test-impl/PassiveTestTester.ref.cpp
2023-09-26 14:52:05 -07:00

83 lines
1.8 KiB
C++

// ======================================================================
// \title PassiveTestTester.cpp
// \author Generated by fpp-to-cpp
// \brief cpp file for PassiveTest component test harness implementation class
// ======================================================================
#include "PassiveTestTester.hpp"
// ----------------------------------------------------------------------
// Construction and destruction
// ----------------------------------------------------------------------
PassiveTestTester ::
PassiveTestTester() :
PassiveTestGTestBase("PassiveTestTester", PassiveTestTester::MAX_HISTORY_SIZE),
component("PassiveTest")
{
this->initComponents();
this->connectPorts();
}
PassiveTestTester ::
~PassiveTestTester()
{
}
// ----------------------------------------------------------------------
// Tests
// ----------------------------------------------------------------------
void PassiveTestTester ::
toDo()
{
// TODO
}
// ----------------------------------------------------------------------
// Handlers for typed from ports
// ----------------------------------------------------------------------
void PassiveTestTester ::
from_noArgsOut_handler(NATIVE_INT_TYPE portNum)
{
// TODO
}
U32 PassiveTestTester ::
from_noArgsReturnOut_handler(NATIVE_INT_TYPE portNum)
{
// TODO return
}
void PassiveTestTester ::
from_typedOut_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 PassiveTestTester ::
from_typedReturnOut_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
}