我正在从从模板基类继承的 dll 中导出一个类。模板基类不是从 dll 中导出的,而是被设计成在编译时像静态库一样链接。情况是这样的:
基类定义如下:
template<typename _type>
class Singleton
{
public:
static void CreateSingleton(void);
static _type* GetSingleton(void);
static void DestroySingleton(void);
virtual ~Singleton(void);
protected:
Singleton(void);
Singleton(const Singleton<_type> ©from);
_type* m_ptrSingleton;
};
我有一个继承自 this 的类,其定义如下:
#if defined(_ENGINE_EXPORT)
#define ENGINELINKAGE __declspec(dllexport)
#elif defined(_ENGINE_IMPORT)
#define ENGINELINKAGE __declspec(dllimport)
#else
#define ENGINELINKAGE
#endif
class ENGINELINKAGE IWindowManager: public Singleton<IWindowManager>
{
public:
virtual ~IWindowManager(void) =0;
};
我能够编译,但是当尝试在另一个从包含 IWindowManager 和 Singleton 的 dll 导入的项目中使用 IWindowManager 时,链接器会产生以下错误:
2>Engine_win32.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class IWindowManager * __cdecl Singleton<class IWindowManager>::GetSingleton(void)" (__imp_?GetSingleton@?$Singleton@VIWindowManager@@@@SAPAVIWindowManager@@XZ) referenced in function "public: static class WindowManager_win32 * __cdecl WindowManager_win32::GetSingleton(void)" (?GetSingleton@WindowManager_win32@@SAPAV1@XZ)
2>WindowManager_win32.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class IWindowManager * __cdecl Singleton<class IWindowManager>::GetSingleton(void)" (__imp_?GetSingleton@?$Singleton@VIWindowManager@@@@SAPAVIWindowManager@@XZ)
2>Window_win32.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class IWindowManager * __cdecl Singleton<class IWindowManager>::GetSingleton(void)" (__imp_?GetSingleton@?$Singleton@VIWindowManager@@@@SAPAVIWindowManager@@XZ)
2>Engine_win32.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static void __cdecl Singleton<class IWindowManager>::DestroySingleton(void)" (__imp_?DestroySingleton@?$Singleton@VIWindowManager@@@@SAXXZ) referenced in function _main
2>Engine_win32.obj : error LNK2001: unresolved external symbol "protected: static class IWindowManager * Singleton<class IWindowManager>::m_ptrSingleton" (?m_ptrSingleton@?$Singleton@VIWindowManager@@@@1PAVIWindowManager@@A)
我已经定义了这样的类,使得 IWindowManager 应该从 dll 中导出,但 Singleton 不应该是,而是在编译时静态链接到程序中。这样做的原因是,如果您想从 dll 中导出模板,并且您没有一组非常具体的模板实例,那么您必须静态链接它。无法动态链接模板,但您必须动态链接要导出/导入的每个实例。
链接器错误似乎表明它正在尝试导出 Singleton,即使我没有指定它应该被导出。
有谁明白为什么会发生这种情况或我该如何解决这个问题?