X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_zline.h;h=faebd1ab61997139d6cf682a1d55a23a0217e3ca;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=438e33665fe4fb54317ef808aa9d4509adeb6508;hpb=65923c4d397ce3655473b2d25db5acc90aa78075;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_zline.h b/include/commands/cmd_zline.h index 438e33665..faebd1ab6 100644 --- a/include/commands/cmd_zline.h +++ b/include/commands/cmd_zline.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /ZLINE + */ class cmd_zline : public command_t { public: - cmd_zline () : command_t("ZLINE",'o',1) { } - void Handle(char **parameters, int pcnt, userrec *user); + cmd_zline (InspIRCd* Instance) : command_t(Instance,"ZLINE",'o',1) { syntax = " [ :]"; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif