]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_notice.h
Command result codes. This isnt finished yet, still got to do most of the modules...
[user/henk/code/inspircd.git] / include / commands / cmd_notice.h
index 19fbc336578589d20521427298f2d347ec9afa1a..b50589dfedd46c8803043817cdf21accc3912b81 100644 (file)
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
 #include "users.h"
 #include "channels.h"
 
@@ -32,7 +26,7 @@ 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