]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_wallops.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_wallops.h
index c637e6e980eb51c564a90d3ea9c259c60a144611..7c84a1434d08145a3c71f68f8c4c3c429a67fb1e 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 /WALLOPS
+ */
 class cmd_wallops : public command_t
 {
  public:
         cmd_wallops (InspIRCd* Instance) : command_t(Instance,"WALLOPS",'o',1) { syntax = "<any-text>"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif