]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_rpctest.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_rpctest.cpp
index 1d3f2a71ee3f1c125361c28cd1e837d45ffcb103..a3397651087faf591867e43bfa4db4807fd43dd2 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -12,9 +12,6 @@
  */
 
 #include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 #include "rpc.h"
 
 /* $ModDesc: A test of the RPC API */
 class ModuleRPCTest : public Module
 {
  private:
-       
+
  public:
-       ModuleRPCTest(InspIRCd *Me) : Module(Me)
-       {
+       ModuleRPCTest()         {
+               Implementation eventlist[] = { I_OnEvent };
+               ServerInstance->Modules->Attach(eventlist, this, 1);
        }
-       
+
        virtual ~ModuleRPCTest()
        {
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
-       }
-       
-       void Implements(char *List)
-       {
-               List[I_OnEvent] = 1;
+               return Version("A test of the RPC API", VF_VENDOR, API_VERSION);
        }
-       
+
+
        virtual void OnEvent(Event *ev)
        {
                if (ev->GetEventID() == "RPCMethod")
                {
                        RPCRequest *req = (RPCRequest*) ev->GetData();
-                       
+
                        if (req->method == "test.echo")
                        {
                                req->claimed = true;
@@ -57,7 +51,7 @@ class ModuleRPCTest : public Module
                                        req->error = "Insufficient parameters";
                                        return;
                                }
-                               
+
                                req->result->SetString(req->parameters->GetArray(0)->GetString());
                        }
                }