diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 13:27:36 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 13:27:36 +0000 |
commit | 8f7870b8131824f4b4587a8e979c1c0ddf70d379 (patch) | |
tree | 334cbc23d9639daf571fc2c184eed815a7fcb599 /src/modules/m_denychans.cpp | |
parent | d7e5dfd5b9b98fc673fb0fbf7ca2fc5b7e618714 (diff) |
Conversions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7352 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_denychans.cpp')
-rw-r--r-- | src/modules/m_denychans.cpp | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index 3b3cd50fa..0ce9c3d75 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -77,29 +77,4 @@ class ModuleDenyChannels : public Module } }; -// stuff down here is the module-factory stuff. For basic modules you can ignore this. - -class ModuleDenyChannelsFactory : public ModuleFactory -{ - public: - ModuleDenyChannelsFactory() - { - } - - ~ModuleDenyChannelsFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleDenyChannels(Me); - } - -}; - - -extern "C" DllExport void * init_module( void ) -{ - return new ModuleDenyChannelsFactory; -} - +MODULE_INIT(ModuleDenyChannels); |