summaryrefslogtreecommitdiff
path: root/include/modes/cmode_v.h
blob: 8cf1ad994629f3c3408f1a60b81dafba9757aad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);
};