]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_rehash.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_rehash.h
index f9690a3ee48fbb18fa55679f07b4f337fe218544..8404f2df30cd80626f410a98bca49c941d749d5a 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"
 
+/** Handle /REHASH
+ */
 class cmd_rehash : public command_t
 {
  public:
-        cmd_rehash () : command_t("REHASH",'o',0) { syntax = "[<servermask>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_rehash (InspIRCd* Instance) : command_t(Instance,"REHASH",'o',0) { syntax = "[<servermask>]"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif