diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-07 17:05:34 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-07 17:05:34 +0000 |
commit | 2d821f2980825be73e3f90b47ffff365b0ec5ecb (patch) | |
tree | 5063e20e64555f26c357ccae5ab99e54e899c69d /src/modules/m_showwhois.cpp | |
parent | 4eaa2dfa110cb0096c3fd2ff134514a9d5ffd0b6 (diff) |
Changed behaviour of module API to pass Server* to the constructor, rather than have to create one (makes more sense)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2252 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_showwhois.cpp')
-rw-r--r-- | src/modules/m_showwhois.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index e19eddb1e..c16135679 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -9,20 +9,20 @@ using namespace std; /* $ModDesc: Allows opers to set +W to see when a user uses WHOIS on them */ -Server *Srv; - class ModuleShowwhois : public Module { + Server* Srv; + public: - ModuleShowwhois() + ModuleShowwhois(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; Srv->AddExtendedMode('W',MT_CLIENT,true,0,0); } ~ModuleShowwhois() { - delete Srv; } virtual Version GetVersion() @@ -61,9 +61,9 @@ class ModuleShowwhoisFactory : public ModuleFactory { } - virtual Module* CreateModule() + virtual Module* CreateModule(Server* Me) { - return new ModuleShowwhois; + return new ModuleShowwhois(Me); } }; |