X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_kill.h;h=97f767cc9e30c2d028e08135ddcb3e8ca6693b78;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=2fdf39e52381765d041a0a09e64c2a570c006dd4;hpb=65923c4d397ce3655473b2d25db5acc90aa78075;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_kill.h b/include/commands/cmd_kill.h index 2fdf39e52..97f767cc9 100644 --- a/include/commands/cmd_kill.h +++ b/include/commands/cmd_kill.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /KILL + */ class cmd_kill : public command_t { public: - cmd_kill () : command_t("KILL",'o',2) { } - void Handle(char **parameters, int pcnt, userrec *user); + cmd_kill (InspIRCd* Instance) : command_t(Instance,"KILL",'o',2) { syntax = " "; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif