// -*- mode: c++ -*- #ifndef TEST_H #define TEST_H #include "../Factory/factory.h" #ifdef TEST_EXPORTS # define _TEST_DLL_EXPORTS _declspec( dllexport ) # else # define _TEST_DLL_EXPORTS _declspec( dllimport ) # endif class _TEST_DLL_EXPORTS MyTestClass : public fun::Serializable_c { public: static void EnsureIncluded(); static MyTestClass* Instantiate(fun::ObjectArchive_c* archive); virtual ~MyTestClass() {} virtual std::string GetText() const; }; #endif