X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_loadmodule.h;h=f26ffc113d82a183e6301636ebe4afefad56452f;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=d9ee5ad4b8b0aa01f15e71fd938a00e5e9b385b0;hpb=65923c4d397ce3655473b2d25db5acc90aa78075;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_loadmodule.h b/include/commands/cmd_loadmodule.h index d9ee5ad4b..f26ffc113 100644 --- a/include/commands/cmd_loadmodule.h +++ b/include/commands/cmd_loadmodule.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /LOADMODULE + */ class cmd_loadmodule : public command_t { public: - cmd_loadmodule () : command_t("LOADMODULE",'o',1) { } - void Handle(char **parameters, int pcnt, userrec *user); + cmd_loadmodule (InspIRCd* Instance) : command_t(Instance,"LOADMODULE",'o',1) { syntax = ""; } + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif