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

class ModeChannelBan : public ModeHandler
{
 private:
	BanItem b;
 public:
	ModeChannelBan();
	ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
	std::string& AddBan(userrec *user,std::string& dest,chanrec *chan,int status);
	std::string& DelBan(userrec *user,std::string& dest,chanrec *chan,int status);
};