summaryrefslogtreecommitdiff
path: root/include/dynamic.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-20 21:14:25 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-20 21:14:25 +0000
commit703ca18c66d6e7b209b13f415dfc52624801c77a (patch)
treee1d331e024b46fcbc8165d936b995ce72247f104 /include/dynamic.h
parentf67620f774935e2c1aa8f0dd814fc7d915fb5ab4 (diff)
More comments, and remove some unused craq. Someone (that being me) once wrote a craqy imitation of std::bitset called dynamicbitmask which took up a large amount of hashcomp.{h,cpp} before i actually knew that std::bitset existed. NOTHING has ever used this class, so whack it as tidyup, knowing it wont
break anything :) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10567 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/dynamic.h')
-rw-r--r--include/dynamic.h4
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
+