mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
37 lines
1003 B
C++
Vendored
37 lines
1003 B
C++
Vendored
// ======================================================================
|
|
// \title QueuedSerialTester.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for QueuedSerial component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "QueuedSerialTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
QueuedSerialTester ::
|
|
QueuedSerialTester() :
|
|
QueuedSerialGTestBase("QueuedSerialTester", QueuedSerialTester::MAX_HISTORY_SIZE),
|
|
component(this->paramDelegate, "QueuedSerial")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
QueuedSerialTester ::
|
|
~QueuedSerialTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void QueuedSerialTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|