]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_who.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_who.h
index fff9737add8bc2d7d979752259349cacd1a94d45..8b5bbe89e3242006308067bf1449a8edf1c6f416 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /WHO
+ */
 class cmd_who : public command_t
 {
  public:
         cmd_who (InspIRCd* Instance) : command_t(Instance,"WHO",0,1) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohur]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif