aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_setident.cpp
diff options
context:
space:
mode:
authorGravatar w00t2007-06-17 13:55:47 +0000
committerGravatar w00t2007-06-17 13:55:47 +0000
commit9f7994306aed806218196fe947e59bd6a89a1a30 (patch)
tree15aa4241e476a4ac08c83e7fa3f754343591d93f /src/modules/m_setident.cpp
parentConversions.. (diff)
downloadinspircd++-9f7994306aed806218196fe947e59bd6a89a1a30.tar.gz
inspircd++-9f7994306aed806218196fe947e59bd6a89a1a30.tar.bz2
inspircd++-9f7994306aed806218196fe947e59bd6a89a1a30.zip
Conversions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7365 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_setident.cpp')
-rw-r--r--src/modules/m_setident.cpp26
1 files changed, 1 insertions, 25 deletions
diff --git a/src/modules/m_setident.cpp b/src/modules/m_setident.cpp
index 5122781f1..4bd19fd7a 100644
--- a/src/modules/m_setident.cpp
+++ b/src/modules/m_setident.cpp
@@ -76,29 +76,5 @@ class ModuleSetIdent : public Module
};
-// stuff down here is the module-factory stuff. For basic modules you can ignore this.
-
-class ModuleSetIdentFactory : public ModuleFactory
-{
- public:
- ModuleSetIdentFactory()
- {
- }
-
- ~ModuleSetIdentFactory()
- {
- }
-
- virtual Module * CreateModule(InspIRCd* Me)
- {
- return new ModuleSetIdent(Me);
- }
-
-};
-
-
-extern "C" DllExport void * init_module( void )
-{
- return new ModuleSetIdentFactory;
-}
+MODULE_INIT(ModuleSetIdent);