// HelloHandler_v1.cpp #include "HelloWorldController.h" #include "RuntimeObjectSystem/ObjectInterfacePerModule.h" #include "StdioLogSystem.h" // 接口定义 enum CustomInterfaceIDs { IID_HELLO_HANDLER = IID_ENDInterfaceID + 1 }; struct IHelloHandler : public IObject { virtual std::string GetResponse() = 0; }; class HelloHandler_v1 : public TInterface { public: std::string GetResponse() override; };