X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_squit.h;h=1b34ce36613b4db21b9b483ff1f93c6f6a018f58;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=d22ee92645b3de79632f44c1141ba3a97339f13c;hpb=dc8f5d02f77aeabefaefe88005b99c8b47030ab7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_squit.h b/include/commands/cmd_squit.h index d22ee9264..1b34ce366 100644 --- a/include/commands/cmd_squit.h +++ b/include/commands/cmd_squit.h @@ -19,20 +19,19 @@ // include the common header files -#include -#include #include -#include -#include #include +#include "inspircd.h" #include "users.h" #include "channels.h" +/** Handle /SQUIT + */ class cmd_squit : public command_t { public: - cmd_squit () : command_t("SQUIT",'o',1) { syntax = " []"; } - void Handle(const char** parameters, int pcnt, userrec *user); + cmd_squit (InspIRCd* Instance) : command_t(Instance,"SQUIT",'o',1) { syntax = " []"; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif