]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_version.h
Command result codes. This isnt finished yet, still got to do most of the modules...
[user/henk/code/inspircd.git] / include / commands / cmd_version.h
index 55b643f6eb811cc405166f44d427869168e14572..accbd745242011ad66ce7325d855187be90e0d41 100644 (file)
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
 #include "users.h"
 #include "channels.h"
 
 class cmd_version : public command_t
 {
  public:
-        cmd_version () : command_t("VERSION",0,0) { syntax = "[<servername>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_version (InspIRCd* Instance) : command_t(Instance,"VERSION",0,0) { syntax = "[<servername>]"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif