cmd_qline.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __CMD_QLINE_H__
00015 #define __CMD_QLINE_H__
00016
00017
00018
00019 #include "users.h"
00020 #include "channels.h"
00021
00027 class CommandQline : public Command
00028 {
00029 public:
00032 CommandQline (InspIRCd* Instance) : Command(Instance,"QLINE","o",1,3,false,0) { syntax = "<nick> [<duration> :<reason>]"; }
00039 CmdResult Handle(const std::vector<std::string>& parameters, User *user);
00040 };
00041
00042 #endif