Files
fprime/FppTest/component/empty/Empty.cpp
M Starch a049743e07 Removing component init() functions where unneeded (#2893)
* Removing component init() functions where unneeded

* Removing spurious assert
2024-09-23 18:39:00 -07:00

30 lines
614 B
C++

// ======================================================================
// \title Empty.cpp
// \author tiffany
// \brief cpp file for Empty component implementation class
// ======================================================================
#include "Empty.hpp"
#include <FpConfig.hpp>
// ----------------------------------------------------------------------
// Construction, initialization, and destruction
// ----------------------------------------------------------------------
Empty ::
Empty(
const char *const compName
) : EmptyComponentBase(compName)
{
}
Empty ::
~Empty()
{
}