diff options
author | Adam <Adam@anope.org> | 2015-01-26 15:10:18 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-01-26 15:10:18 -0500 |
commit | 2264a206d262f07f6c6d91df867383d6413e0c3f (patch) | |
tree | 06963ebcf94b6ee82107a7aa7e801f64abcc2757 /include/modes.h | |
parent | d324e9152012500c7a811d7adda6ad2c6fbcd26f (diff) |
Check virtual mode bases better
Diffstat (limited to 'include/modes.h')
-rw-r--r-- | include/modes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/modes.h b/include/modes.h index 9c5916c0f..729e979d4 100644 --- a/include/modes.h +++ b/include/modes.h @@ -107,6 +107,8 @@ class CoreExport ChannelMode : public Mode bool CanSet(User *u) const anope_override; + virtual void Check() { } + /** 'wrap' this channel mode and param to the underlying mode and param */ virtual ChannelMode *Wrap(Anope::string ¶m); @@ -215,6 +217,8 @@ class CoreExport ChannelModeVirtual : public T ~ChannelModeVirtual(); + void Check() anope_override; + ChannelMode *Wrap(Anope::string ¶m) anope_override; ChannelMode *Unwrap(ChannelMode *cm, Anope::string ¶m) = 0; |