diff options
Diffstat (limited to 'src/modules/m_remove.cpp')
-rw-r--r-- | src/modules/m_remove.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 36f056451..eeb5ee1a1 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -32,6 +32,8 @@ * eg: +h can remove +hv and users with no modes. +a can remove +aohv and users with no modes. */ +/** Base class for /FPART and /REMOVE + */ class RemoveBase { private: @@ -220,6 +222,8 @@ class RemoveBase } }; +/** Handle /REMOVE + */ class cmd_remove : public command_t, public RemoveBase { public: @@ -235,6 +239,8 @@ class cmd_remove : public command_t, public RemoveBase } }; +/** Handle /FPART + */ class cmd_fpart : public command_t, public RemoveBase { public: |