mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-13 20:49:02 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4908 e03df62e-2008-0410-955e-edbf42e46eb7
13 lines
280 B
C++
13 lines
280 B
C++
#include "mode.h"
|
|
|
|
class InspIRCd;
|
|
|
|
/** Channel mode +i
|
|
*/
|
|
class ModeChannelInviteOnly : public ModeHandler
|
|
{
|
|
public:
|
|
ModeChannelInviteOnly(InspIRCd* Instance);
|
|
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
|
|
};
|