diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/modes/cmode_n.h | 8 | ||||
-rw-r--r-- | include/modes/cmode_t.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/modes/cmode_n.h b/include/modes/cmode_n.h new file mode 100644 index 000000000..ebed70103 --- /dev/null +++ b/include/modes/cmode_n.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeChannelNoExternal : public ModeHandler +{ + public: + ModeChannelNoExternal(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; diff --git a/include/modes/cmode_t.h b/include/modes/cmode_t.h new file mode 100644 index 000000000..7e852400b --- /dev/null +++ b/include/modes/cmode_t.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeChannelTopicOps : public ModeHandler +{ + public: + ModeChannelTopicOps(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; |