inspircd/include/modes/cmode_h.h
brain 2d4621658d Add support for cmode +h
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4170 e03df62e-2008-0410-955e-edbf42e46eb7
2006-07-08 16:10:34 +00:00

14 lines
408 B
C++

#include "mode.h"
#include "channels.h"
class ModeChannelHalfOp : public ModeHandler
{
private:
public:
ModeChannelHalfOp();
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, 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);
};