]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_testcommand.cpp
fix some unitialised vectors and tidy up a bit.
[user/henk/code/inspircd.git] / src / modules / m_testcommand.cpp
index 2da77b34e772333942149b20ba40456532e56eb1..b38171593d34ed4c7a94a972bbaa13aea3614afc 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -26,7 +26,7 @@ class CommandDalinfo : public Command
                this->source = "m_testcommand.so";
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, User *user)
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
                user->WriteServ("NOTICE %s :*** DALNet had nothing to do with it.", user->nick);
                return CMD_FAILURE;
@@ -43,19 +43,17 @@ class ModuleTestCommand : public Module
                // Create a new command
                newcommand = new CommandDalinfo(ServerInstance);
                ServerInstance->AddCommand(newcommand);
-       }
 
-       void Implements(char* List)
-       {
        }
 
+
        virtual ~ModuleTestCommand()
        {
        }
 
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
        }
 };