X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_pong.h;h=4eecbfa2a13419c10cc38947f13d64b0b4b3f881;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=2857f0b861266dd6b01f1ae735f229602ff319b4;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_pong.h b/include/commands/cmd_pong.h index 2857f0b86..4eecbfa2a 100644 --- a/include/commands/cmd_pong.h +++ b/include/commands/cmd_pong.h @@ -19,20 +19,17 @@ // include the common header files -#include -#include -#include -#include -#include -#include +#include "inspircd.h" #include "users.h" #include "channels.h" +/** Handle /PONG + */ class cmd_pong : public command_t { public: cmd_pong (InspIRCd* Instance) : command_t(Instance,"PONG",0,1) { syntax = ""; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif