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

class InspIRCd;

class ModeChannelKey : public ModeHandler
{
 public:
	ModeChannelKey(InspIRCd* Instance);
	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);
};