X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_part.h;h=5f74b98555d9e776827349adcd6204c798c59805;hb=b57568ecc46296ba3a0e06d770eceff40cc9aee4;hp=59af15a87688ab96af2a971cc7eec85c62b8313d;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_part.h b/include/commands/cmd_part.h index 59af15a87..5f74b9855 100644 --- a/include/commands/cmd_part.h +++ b/include/commands/cmd_part.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /PART + */ class cmd_part : public command_t { public: cmd_part (InspIRCd* Instance) : command_t(Instance,"PART",0,1) { syntax = "{,} []"; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif