X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_modules.h;h=2e207c5f08762bd42e44ccca4f1e4f852aff855d;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=75b24d10855675a8ae69e887d83d5063dcc3653d;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_modules.h b/include/commands/cmd_modules.h index 75b24d108..2e207c5f0 100644 --- a/include/commands/cmd_modules.h +++ b/include/commands/cmd_modules.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /MODULES + */ class cmd_modules : public command_t { public: cmd_modules (InspIRCd* Instance) : command_t(Instance,"MODULES",0,0) { syntax = "[debug]"; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif