aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/core/sourceinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/core/sourceinterface.h')
-rw-r--r--NorthstarDLL/core/sourceinterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/core/sourceinterface.h b/NorthstarDLL/core/sourceinterface.h
index 474e961b..7b5e81f3 100644
--- a/NorthstarDLL/core/sourceinterface.h
+++ b/NorthstarDLL/core/sourceinterface.h
@@ -6,10 +6,10 @@ typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
template <typename T> class SourceInterface
{
- private:
+private:
T* m_interface;
- public:
+public:
SourceInterface(const std::string& moduleName, const std::string& interfaceName)
{
HMODULE handle = GetModuleHandleA(moduleName.c_str());