]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_away.h
Annotations
[user/henk/code/inspircd.git] / include / commands / cmd_away.h
index 3f9eddb87803520e69b812bc1538a71855d8ea16..469b07fb3685dfd3323948580f5b6639c9d3bb61 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /AWAY
+ */
 class cmd_away : public command_t
 {
  public:
         cmd_away (InspIRCd* Instance) : command_t(Instance,"AWAY",0,0) { syntax = "[<message>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif