]> 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 358e405d69139f840d30e8be32216a67c0f825b8..fd1d42654f67fa67c4cb0dc389412cc8e350737e 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"
 
+/** Handle /NOTICE
+ */
 class cmd_notice : public command_t
 {
  public:
-        cmd_notice () : command_t("NOTICE",0,2) { }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        cmd_notice (InspIRCd* Instance) : command_t(Instance,"NOTICE",0,2) { syntax = "<target>{,<target>} <message>"; }
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif