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

class InspIRCd;

/** Channel mode +s
 */
class ModeChannelSecret : public ModeHandler
{
 public:
	ModeChannelSecret(InspIRCd* Instance);
	ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
};