X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_qline.h;h=423b48b9b928921fecd6c4ff2ffa81a6fea852f7;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=3655619295bf73c7206edae46e36c56c2360dd5f;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_qline.h b/include/commands/cmd_qline.h index 365561929..423b48b9b 100644 --- a/include/commands/cmd_qline.h +++ b/include/commands/cmd_qline.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /QLINE + */ class cmd_qline : public command_t { public: cmd_qline (InspIRCd* Instance) : command_t(Instance,"QLINE",'o',1) { syntax = " [ :]"; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif