summaryrefslogtreecommitdiff
path: root/include/modes/cmode_k.h
blob: 8434fc5c43968449da69659fd1e9dde46fbfc1af (plain)
1
2
3
4
5
6
7
8
9
10
#include "mode.h"

class ModeChannelKey : public ModeHandler
{
 public:
	ModeChannelKey();
	ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
	ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter);
	bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel);
};