diff options
Diffstat (limited to 'NorthstarDedicatedTest/sourceinterface.h')
-rw-r--r-- | NorthstarDedicatedTest/sourceinterface.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/sourceinterface.h b/NorthstarDedicatedTest/sourceinterface.h new file mode 100644 index 00000000..bc4767f5 --- /dev/null +++ b/NorthstarDedicatedTest/sourceinterface.h @@ -0,0 +1,24 @@ +#pragma once +#include <string> + +// literally just copied from ttf2sdk definition +typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode); + +template<typename T> class SourceInterface +{ +private: + T* m_interface; + +public: + SourceInterface(const std::string& moduleName, const std::string& interfaceName); + + T* operator->() const + { + return m_interface; + } + + operator T* () const + { + return m_interface; + } +}; |