mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 21:35:53 -06:00
37 lines
910 B
C++
37 lines
910 B
C++
// ======================================================================
|
|
// \title EmptyTester.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for Empty component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "EmptyTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
EmptyTester ::
|
|
EmptyTester() :
|
|
EmptyGTestBase("EmptyTester", EmptyTester::MAX_HISTORY_SIZE),
|
|
component("Empty")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
EmptyTester ::
|
|
~EmptyTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void EmptyTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|