blob: cf61726dada4ab37d98a857236d8f0d4c4f92529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "mode.h"
#include "channels.h"
class InspIRCd;
/** Channel mode +h
*/
class ModeChannelHalfOp : public ModeHandler
{
private:
public:
ModeChannelHalfOp(InspIRCd* Instance);
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
std::string AddHalfOp(userrec *user,const char *dest,chanrec *chan,int status);
std::string DelHalfOp(userrec *user,const char *dest,chanrec *chan,int status);
ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string ¶meter);
};
|