2025-08-19 17:48:16 -07:00

17 lines
602 B
C++

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