#include "test.h" #include #include void MyTestClass::EnsureIncluded() { } MyTestClass* MyTestClass::Instantiate(fun::ObjectArchive_c* /*archive*/) { std::cout << "Creating a new object!\n"; return new MyTestClass; } std::string MyTestClass::GetText() const { return std::string("Found the right one!"); }