diff options
Diffstat (limited to 'include/modes/cmode_i.h')
-rw-r--r-- | include/modes/cmode_i.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/include/modes/cmode_i.h b/include/modes/cmode_i.h index 9df5314aa..fb177dc0f 100644 --- a/include/modes/cmode_i.h +++ b/include/modes/cmode_i.h @@ -1 +1,25 @@ -/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2007 InspIRCd Development Team
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#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);
};
\ No newline at end of file +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#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); +}; |