]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_summon.h
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / include / commands / cmd_summon.h
index cfa70800bfa1c01346aa6b99559a767566fb72d3..eaf4735d17651e8ec6691a0b93e92525cb36aaa0 100644 (file)
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
 #include <string>
-#include <deque>
-#include <sstream>
 #include <vector>
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 
 class cmd_summon : public command_t
 {
  public:
-        cmd_summon () : command_t("SUMMON",0,0) { }
-        void Handle(char **parameters, int pcnt, userrec *user);
+        cmd_summon (InspIRCd* Instance) : command_t(Instance,"SUMMON",0,0) { }
+        void Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif