]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_foobar.cpp
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / src / modules / m_foobar.cpp
index a67b936bd4660e1e8107a487ca2b4de220d01d7a..13c3477dea8977f1ed7eaf5be64dc185489fea56 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -20,6 +20,8 @@ using namespace std;
 #include "channels.h"
 #include "modules.h"
 
+#include "inspircd.h"
+
 /* $ModDesc: A dummy module for testing */
 
 // Class ModuleFoobar inherits from Module
@@ -34,14 +36,14 @@ class ModuleFoobar : public Module
         // encapsulate the exports from the core of the ircd.
         // such methods include Debug, SendChannel, etc.
  
-        Server *Srv;
+        
  public:
-       ModuleFoobar(Server* Me)
+       ModuleFoobar(InspIRCd* Me)
                : Module::Module(Me)
        {
                // The constructor just makes a copy of the server class
        
-               Srv = Me;
+               
        }
        
        virtual ~ModuleFoobar()
@@ -66,15 +68,15 @@ class ModuleFoobar : public Module
                // method called when a user connects
        
                std::string b = user->nick;
-               Srv->Log(DEBUG,"Foobar: User connecting: " + b);
+               ServerInstance->Log(DEBUG,"Foobar: User connecting: "+b);
        }
 
-       virtual void OnUserQuit(userrec* user, std::string reason)
+       virtual void OnUserQuit(userrec* user, const std::string &reason)
        {
                // method called when a user disconnects
        
                std::string b = user->nick;
-               Srv->Log(DEBUG,"Foobar: User quitting: " + b);
+               ServerInstance->Log(DEBUG,"Foobar: User quitting: "+b);
        }
        
        virtual void OnUserJoin(userrec* user, chanrec* channel)
@@ -83,16 +85,16 @@ class ModuleFoobar : public Module
        
                std::string c = channel->name;
                std::string b = user->nick;
-               Srv->Log(DEBUG,"Foobar: User " + b + " joined " + c);
+               ServerInstance->Log(DEBUG,"Foobar: User "+b+" joined "+c);
        }
 
-       virtual void OnUserPart(userrec* user, chanrec* channel)
+       virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partreason)
        {
                // method called when a user parts a channel
        
                std::string c = channel->name;
                std::string b = user->nick;
-               Srv->Log(DEBUG,"Foobar: User " + b + " parted " + c);
+               ServerInstance->Log(DEBUG,"Foobar: User "+b+" parted "+c);
        }
 
 };
@@ -114,7 +116,7 @@ class ModuleFoobarFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleFoobar(Me);
        }