cmode_l.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "mode.h"
00015
00016 class InspIRCd;
00017
00020 class ModeChannelLimit : public ModeHandler
00021 {
00022 public:
00023 ModeChannelLimit(InspIRCd* Instance);
00024 ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode);
00025 ModePair ModeSet(User* source, User* dest, Channel* channel, const std::string ¶meter);
00026 bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, Channel* channel);
00027 };