X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_kline.h;h=50fc29815878fca4f835e089f16eb16e59fe470e;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=de8a26779fd84e9537188e86f1a58b55e0dd2b88;hpb=dc8f5d02f77aeabefaefe88005b99c8b47030ab7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_kline.h b/include/commands/cmd_kline.h index de8a26779..50fc29815 100644 --- a/include/commands/cmd_kline.h +++ b/include/commands/cmd_kline.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /KLINE + */ class cmd_kline : public command_t { public: - cmd_kline () : command_t("KLINE",'o',1) { syntax = " [ :]"; } - void Handle(const char** parameters, int pcnt, userrec *user); + cmd_kline (InspIRCd* Instance) : command_t(Instance,"KLINE",'o',1) { syntax = " [ :]"; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif