X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_rehash.h;h=8404f2df30cd80626f410a98bca49c941d749d5a;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=f9690a3ee48fbb18fa55679f07b4f337fe218544;hpb=dc8f5d02f77aeabefaefe88005b99c8b47030ab7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_rehash.h b/include/commands/cmd_rehash.h index f9690a3ee..8404f2df3 100644 --- a/include/commands/cmd_rehash.h +++ b/include/commands/cmd_rehash.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /REHASH + */ class cmd_rehash : public command_t { public: - cmd_rehash () : command_t("REHASH",'o',0) { syntax = "[]"; } - void Handle(const char** parameters, int pcnt, userrec *user); + cmd_rehash (InspIRCd* Instance) : command_t(Instance,"REHASH",'o',0) { syntax = "[]"; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif