summaryrefslogtreecommitdiff
path: root/src/modules/m_remove.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-15 14:25:10 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-15 14:25:10 +0000
commit7c0c957577a195b4819e4d7f2c9672d7c7522b0d (patch)
treec2585d874e153fef606db89f4dcfcaf80cb59c47 /src/modules/m_remove.cpp
parentb45e7cfebbeaad4ecc3c55bc3060140f50f710d3 (diff)
Annotations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5255 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_remove.cpp')
-rw-r--r--src/modules/m_remove.cpp6
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: