#ifndef M_C_HPP #define M_C_HPP #include "CComponentAc.hpp" namespace M { class C : public CComponentBase { public: C(const char* name) { } void init(U32 instanceId) { } virtual void pingIn_handler(FwIndexType portNum, U32 key) { } }; } #endif