]> 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 819fa121e197631c319bc11183e8b1368307e51f..7c84a1434d08145a3c71f68f8c4c3c429a67fb1e 100644 (file)
 #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