X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_ison.h;h=45e665cde91bd2ec36ecb2b82c3f303f75426d99;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=5dd28ab7534c460dbd3cafef1a756c7b0ab16d7b;hpb=0757a4a495daabf661ac3b7ab79f0a5ee423abe8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_ison.h b/include/commands/cmd_ison.h index 5dd28ab75..45e665cde 100644 --- a/include/commands/cmd_ison.h +++ b/include/commands/cmd_ison.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /ISON + */ class cmd_ison : public command_t { public: - cmd_ison () : command_t("ISON",0,0) { } - void Handle(const char** parameters, int pcnt, userrec *user); + cmd_ison (InspIRCd* Instance) : command_t(Instance,"ISON",0,0) { syntax = " {nick}"; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif