diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 13:16:07 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 13:16:07 +0000 |
commit | f901c996b97c6d20d776ae2e916fcd75131d13db (patch) | |
tree | bd7101c4d440738bf930cbcb560378a9d9b01550 /src/modules/m_cban.cpp | |
parent | 94d578f4c04a518380504f78c3b7d34e28b4166e (diff) |
More conversions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7349 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_cban.cpp')
-rw-r--r-- | src/modules/m_cban.cpp | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index df24ddf18..35005c741 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -247,26 +247,5 @@ class ModuleCBan : public Module } }; -class ModuleCBanFactory : public ModuleFactory -{ - public: - ModuleCBanFactory() - { - } - - ~ModuleCBanFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleCBan(Me); - } - -}; +MODULE_INIT(ModuleCBan); - -extern "C" DllExport void * init_module( void ) -{ - return new ModuleCBanFactory; -} |