X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fextra%2Fm_testclient.cpp;h=f4e58b7b5969cbee5810b759585c3c129d47ac95;hb=a53da00bce41c9fb50ed4c9d33507f27803c1eb7;hp=20fe6acb56b044c854eae3382a01ceb58542620a;hpb=7f9c6c5118261eac40d9bae22ac2c0ede670512d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/extra/m_testclient.cpp b/src/modules/extra/m_testclient.cpp index 20fe6acb5..f4e58b7b5 100644 --- a/src/modules/extra/m_testclient.cpp +++ b/src/modules/extra/m_testclient.cpp @@ -1,15 +1,23 @@ -#include +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" - -#include "inspircd.h" #include "configreader.h" #include "m_sqlv2.h" - - class ModuleTestClient : public Module { private: @@ -98,25 +106,5 @@ public: } }; -class ModuleTestClientFactory : public ModuleFactory -{ - public: - ModuleTestClientFactory() - { - } - - ~ModuleTestClientFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleTestClient(Me); - } -}; +MODULE_INIT(ModuleTestClient); - -extern "C" void * init_module( void ) -{ - return new ModuleTestClientFactory; -}