X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_kill.h;h=97f767cc9e30c2d028e08135ddcb3e8ca6693b78;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=8f7a401412c184d08786ecab217972d7f567465e;hpb=dc8f5d02f77aeabefaefe88005b99c8b47030ab7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_kill.h b/include/commands/cmd_kill.h index 8f7a40141..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) { syntax = " "; } - void Handle(const 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