X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_ison.h;h=45e665cde91bd2ec36ecb2b82c3f303f75426d99;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=567f8e608038b965a8977cac85cb284d89d1bf26;hpb=5b8d2c4cabec5e6bb7aaf359e6cf6af9635c8dab;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_ison.h b/include/commands/cmd_ison.h index 567f8e608..45e665cde 100644 --- a/include/commands/cmd_ison.h +++ b/include/commands/cmd_ison.h @@ -22,11 +22,13 @@ #include "users.h" #include "channels.h" +/** Handle /ISON + */ class cmd_ison : public command_t { public: cmd_ison (InspIRCd* Instance) : command_t(Instance,"ISON",0,0) { syntax = " {nick}"; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif