X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_wallops.h;h=7c84a1434d08145a3c71f68f8c4c3c429a67fb1e;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=b32783ef6e276d25cbe4e3f0ebfb4215986999b8;hpb=65923c4d397ce3655473b2d25db5acc90aa78075;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_wallops.h b/include/commands/cmd_wallops.h index b32783ef6..7c84a1434 100644 --- a/include/commands/cmd_wallops.h +++ b/include/commands/cmd_wallops.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /WALLOPS + */ class cmd_wallops : public command_t { public: - cmd_wallops () : command_t("WALLOPS",'o',1) { } - void Handle(char **parameters, int pcnt, userrec *user); + cmd_wallops (InspIRCd* Instance) : command_t(Instance,"WALLOPS",'o',1) { syntax = ""; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif