]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_map.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_map.h
index c472bada45cc3ccbfe6031e3db502008b2f6bfa5..3db33015d0383ab1df5324d7d15017e04db7a24a 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 /MAP
+ */
 class cmd_map : public command_t
 {
  public:
         cmd_map (InspIRCd* Instance) : command_t(Instance,"MAP",0,0) { }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif