X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_kill.h;h=97f767cc9e30c2d028e08135ddcb3e8ca6693b78;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=0bf7517f6fb856879c6e2c17dd93f6caf9a026dc;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_kill.h b/include/commands/cmd_kill.h index 0bf7517f6..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 (InspIRCd* Instance) : command_t(Instance,"KILL",'o',2) { syntax = " "; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif