mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 05:15:08 -06:00
38 lines
1.1 KiB
C++
Vendored
38 lines
1.1 KiB
C++
Vendored
// ======================================================================
|
|
// \title QueuedExternalParamsTester.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for QueuedExternalParams component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "QueuedExternalParamsTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
QueuedExternalParamsTester ::
|
|
QueuedExternalParamsTester() :
|
|
QueuedExternalParamsGTestBase("QueuedExternalParamsTester", QueuedExternalParamsTester::MAX_HISTORY_SIZE),
|
|
component("QueuedExternalParams")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
this->component.registerExternalParameters(&this->paramTesterDelegate);
|
|
}
|
|
|
|
QueuedExternalParamsTester ::
|
|
~QueuedExternalParamsTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void QueuedExternalParamsTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|