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