]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_modules.h
Move whowas containers into whowas class to avoid all cpp files including cmd_whowas...
[user/henk/code/inspircd.git] / include / commands / cmd_modules.h
index 75b24d10855675a8ae69e887d83d5063dcc3653d..2e207c5f08762bd42e44ccca4f1e4f852aff855d 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 /MODULES
+ */
 class cmd_modules : public command_t
 {
  public:
         cmd_modules (InspIRCd* Instance) : command_t(Instance,"MODULES",0,0) { syntax = "[debug]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif