diff options
Diffstat (limited to 'include/modes/umode_s.h')
-rw-r--r-- | include/modes/umode_s.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/modes/umode_s.h b/include/modes/umode_s.h new file mode 100644 index 000000000..7c2648abc --- /dev/null +++ b/include/modes/umode_s.h @@ -0,0 +1,25 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 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; + +/** User mode +n + */ +class ModeUserServerNoticeMask : public ModeHandler +{ + public: + ModeUserServerNoticeMask(InspIRCd* Instance); + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); +}; |