fpp/compiler/tools/fpp-to-cpp/test/component/impl/Empty.template.ref.cpp
2023-12-12 08:47:18 -08:00

26 lines
602 B
C++

// ======================================================================
// \title Empty.cpp
// \author [user name]
// \brief cpp file for Empty component implementation class
// ======================================================================
#include "Empty.hpp"
#include "FpConfig.hpp"
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
Empty ::
Empty(const char* const compName) :
EmptyComponentBase(compName)
{
}
Empty ::
~Empty()
{
}