mirror of
https://github.com/nasa/fpp.git
synced 2025-12-12 04:41:37 -06:00
42 lines
1.0 KiB
C++
Vendored
42 lines
1.0 KiB
C++
Vendored
// ======================================================================
|
|
// \title EmptyTesterBase.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for Empty component test harness base class
|
|
// ======================================================================
|
|
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
|
|
#include "test-base/EmptyTesterBase.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component initialization
|
|
// ----------------------------------------------------------------------
|
|
|
|
void EmptyTesterBase ::
|
|
init(FwEnumStoreType instance)
|
|
{
|
|
// Initialize base class
|
|
Fw::PassiveComponentBase::init(instance);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
EmptyTesterBase ::
|
|
EmptyTesterBase(
|
|
const char* const compName,
|
|
const U32 maxHistorySize
|
|
) :
|
|
Fw::PassiveComponentBase(compName)
|
|
{
|
|
|
|
}
|
|
|
|
EmptyTesterBase ::
|
|
~EmptyTesterBase()
|
|
{
|
|
|
|
}
|