]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_notice.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_notice.h
index 24aa773c166a33334848071c00d6ade050b5e4dd..fd1d42654f67fa67c4cb0dc389412cc8e350737e 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /NOTICE
+ */
 class cmd_notice : public command_t
 {
  public:
         cmd_notice (InspIRCd* Instance) : command_t(Instance,"NOTICE",0,2) { syntax = "<target>{,<target>} <message>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif