fpp/compiler/tools/fpp-to-cpp/test/component/impl/Empty.template.ref.cpp
2025-04-15 11:40:29 -06:00

25 lines
578 B
C++
Vendored

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