]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modes/cmode_i.h
Now supports multiple commands seperated with \n. NOTE: These \n's are translated...
[user/henk/code/inspircd.git] / include / modes / cmode_i.h
1 #include "mode.h"
2
3 class InspIRCd;
4
5 /** Channel mode +i
6  */
7 class ModeChannelInviteOnly : public ModeHandler
8 {
9  public:
10         ModeChannelInviteOnly(InspIRCd* Instance);
11         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
12 };