mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
// ======================================================================
|
|
// \title ActiveParamsTester.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for ActiveParams component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveParamsTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveParamsTester ::
|
|
ActiveParamsTester() :
|
|
ActiveParamsGTestBase("ActiveParamsTester", ActiveParamsTester::MAX_HISTORY_SIZE),
|
|
component("ActiveParams")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
ActiveParamsTester ::
|
|
~ActiveParamsTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveParamsTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Handlers for typed from ports
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveParamsTester ::
|
|
from_typedOut_handler(
|
|
NATIVE_INT_TYPE portNum,
|
|
U32 u32,
|
|
F32 f32,
|
|
bool b,
|
|
const TypedPortStrings::StringSize80& str1,
|
|
const E& e,
|
|
const A& a,
|
|
const S& s
|
|
)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
F32 ActiveParamsTester ::
|
|
from_typedReturnOut_handler(
|
|
NATIVE_INT_TYPE portNum,
|
|
U32 u32,
|
|
F32 f32,
|
|
bool b,
|
|
const TypedReturnPortStrings::StringSize80& str2,
|
|
const E& e,
|
|
const A& a,
|
|
const S& s
|
|
)
|
|
{
|
|
// TODO return
|
|
}
|