diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 08:09:58 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-30 08:09:58 +0000 |
commit | fc4135dba610f97727e253ba695a5b36a761aac0 (patch) | |
tree | 1a87b13f2eade8e89f03a52e4e2154c64e8006c9 /src | |
parent | 9dd49a391f0602586b85cc0b6dc54fc0d50a67d2 (diff) |
Stylistic changes.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2027 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_showwhois.cpp | 59 |
1 files changed, 24 insertions, 35 deletions
diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index b7642a012..e19eddb1e 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -11,22 +11,18 @@ using namespace std; Server *Srv; -class ModuleShowwhois : public Module { - +class ModuleShowwhois : public Module +{ public: - - ModuleShowwhois() { - + ModuleShowwhois() + { Srv = new Server; - Srv->AddExtendedMode('W',MT_CLIENT,true,0,0); - } - ~ModuleShowwhois() { - + ~ModuleShowwhois() + { delete Srv; - } virtual Version GetVersion() @@ -34,52 +30,45 @@ class ModuleShowwhois : public Module { return Version(1,0,0,3,VF_STATIC); } - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list& params) { - - if((type == MT_CLIENT) && (modechar == 'W')) { - + virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list& params) + { + if((type == MT_CLIENT) && (modechar == 'W')) + { return 1; - } return 0; - } - virtual void OnWhois(userrec* source, userrec* dest) { - - if(strchr(dest->modes,'W')) { - + virtual void OnWhois(userrec* source, userrec* dest) + { + if(strchr(dest->modes,'W')) + { WriteServ(dest->fd,"NOTICE %s :*** %s (%s@%s) did a /whois on you.",dest->nick,source->nick,source->ident,source->host); - } - } }; -class ModuleShowwhoisFactory : public ModuleFactory { - +class ModuleShowwhoisFactory : public ModuleFactory +{ public: - - ModuleShowwhoisFactory() { - + ModuleShowwhoisFactory() + { } - ~ModuleShowwhoisFactory() { - + ~ModuleShowwhoisFactory() + { } - virtual Module* CreateModule() { - + virtual Module* CreateModule() + { return new ModuleShowwhois; - } }; -extern "C" void* init_module() { - +extern "C" void* init_module() +{ return new ModuleShowwhoisFactory; - } |