]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_rehash.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_rehash.h
index cb2d2e6663a5a0a1f5795c921a35bc685a07d7f6..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 (InspIRCd* Instance) : command_t(Instance,"REHASH",'o',0) { syntax = "[<servermask>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif