]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modes/cmode_t.h
b7f87e614798b7cdabe02c9a00ca8ed388736033
[user/henk/code/inspircd.git] / include / modes / cmode_t.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "mode.h"
15
16 class InspIRCd;
17
18 /** Channel mode +t
19  */
20 class ModeChannelTopicOps : public ModeHandler
21 {
22  public:
23         ModeChannelTopicOps(InspIRCd* Instance);
24         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
25 };