summaryrefslogtreecommitdiff
path: root/include/modes/cmode_v.h
blob: a2d94938d271db47c0144b39b20c0521f32f296b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mode.h"
#include "channels.h"

class InspIRCd;

class ModeChannelVoice : public ModeHandler
{
 private:
 public:
	ModeChannelVoice(InspIRCd* Instance);
	ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
	std::string AddVoice(userrec *user,const char *dest,chanrec *chan,int status);
	std::string DelVoice(userrec *user,const char *dest,chanrec *chan,int status);
	ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter);
};