]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_notice.h
Add cmd_reloadmodule.{h,cpp} contributed by Eric at neowin.net, thanks :)
[user/henk/code/inspircd.git] / include / commands / cmd_notice.h
index 24aa773c166a33334848071c00d6ade050b5e4dd..37b04431c6097e01f97cec00122ad69edb8aede3 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2007 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *                <Craig@chatspike.net>
 #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