]> 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 979ba4a6af3c261632a2791d56cf4917bb51feb9..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) { }
+        cmd_connect (InspIRCd* Instance) : command_t(Instance,"CONNECT",'o',1) { syntax = "<servername> [<remote-server>]"; }
         void Handle(const char** parameters, int pcnt, userrec *user);
 };