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

class InspIRCd;

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