mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 19:49:02 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4165 e03df62e-2008-0410-955e-edbf42e46eb7
14 lines
392 B
C++
14 lines
392 B
C++
#include "mode.h"
|
|
#include "channels.h"
|
|
|
|
class ModeChannelOp : public ModeHandler
|
|
{
|
|
private:
|
|
public:
|
|
ModeChannelOp();
|
|
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
|
|
std::string AddOp(userrec *user,const char *dest,chanrec *chan,int status);
|
|
std::string DelOp(userrec *user,const char *dest,chanrec *chan,int status);
|
|
};
|
|
|