]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_connect.h
Remove a ton of <typeinfo>, <iostream>, <sstream> etc that we usually never use
[user/henk/code/inspircd.git] / include / commands / cmd_connect.h
index 40fd8b752238b87d2372bf9c28d4a2f0913a2910..203fbe9c0d7b9fed21725fee4540488ce0bce20f 100644 (file)
 #include "users.h"
 #include "channels.h"
 #include "ctables.h"
+#include "modules.h"
 
 class cmd_connect : public command_t
 {
  public:
-        cmd_connect () : command_t("CONNECT",'o',1) { syntax = "<servername> [<remote-server>]"; }
+        cmd_connect (InspIRCd* Instance) : command_t(Instance,"CONNECT",'o',1) { syntax = "<servername> [<remote-server>]"; }
         void Handle(const char** parameters, int pcnt, userrec *user);
 };