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

class ModeChannelVoice : public ModeHandler
{
 private:
 public:
	ModeChannelVoice();
	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);
};