X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_connect.h;h=203fbe9c0d7b9fed21725fee4540488ce0bce20f;hb=5b8d2c4cabec5e6bb7aaf359e6cf6af9635c8dab;hp=a65000da4ebcce3dfc011b6e84eeda9e29a5c94b;hpb=65923c4d397ce3655473b2d25db5acc90aa78075;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_connect.h b/include/commands/cmd_connect.h index a65000da4..203fbe9c0 100644 --- a/include/commands/cmd_connect.h +++ b/include/commands/cmd_connect.h @@ -20,12 +20,13 @@ #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) { } - void Handle(char **parameters, int pcnt, userrec *user); + cmd_connect (InspIRCd* Instance) : command_t(Instance,"CONNECT",'o',1) { syntax = " []"; } + void Handle(const char** parameters, int pcnt, userrec *user); }; #endif