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