diff options
Diffstat (limited to 'include/dynamic.h')
-rw-r--r-- | include/dynamic.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dynamic.h b/include/dynamic.h index 727ed11e1..51aaaa3cd 100644 --- a/include/dynamic.h +++ b/include/dynamic.h @@ -137,6 +137,9 @@ template <typename ReturnType> class CoreExport DLLFactory : public DLLManager } } + /** Calls the 'init_module' C exported function within a module, which + * returns a pointer to a Module derived object. + */ ReturnType* CallInit() { if(init_func) @@ -157,3 +160,4 @@ template <typename ReturnType> class CoreExport DLLFactory : public DLLManager }; #endif + |