mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 18:43:51 -06:00
25 lines
578 B
C++
Vendored
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()
|
|
{
|
|
|
|
}
|