mirror of
https://github.com/nasa/fpp.git
synced 2025-12-12 04:41:37 -06:00
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
// ======================================================================
|
|
// \title EmptyComponentAc.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for Empty component base class
|
|
// ======================================================================
|
|
|
|
#include "Fw/Types/Assert.hpp"
|
|
#include "Fw/Types/ExternalString.hpp"
|
|
#if FW_ENABLE_TEXT_LOGGING
|
|
#include "Fw/Types/String.hpp"
|
|
#endif
|
|
#include "base/EmptyComponentAc.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component initialization
|
|
// ----------------------------------------------------------------------
|
|
|
|
void EmptyComponentBase ::
|
|
init(FwEnumStoreType instance)
|
|
{
|
|
// Initialize base class
|
|
Fw::PassiveComponentBase::init(instance);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
EmptyComponentBase ::
|
|
EmptyComponentBase(const char* compName) :
|
|
Fw::PassiveComponentBase(compName)
|
|
{
|
|
|
|
}
|
|
|
|
EmptyComponentBase ::
|
|
~EmptyComponentBase()
|
|
{
|
|
|
|
}
|