diff options
| author | 2006-09-15 10:59:36 +0000 | |
|---|---|---|
| committer | 2006-09-15 10:59:36 +0000 | |
| commit | b45e7cfebbeaad4ecc3c55bc3060140f50f710d3 (patch) | |
| tree | f5d168a3abe2b52b3e32f344c07ddeedaed3c698 /src/modules/m_chanprotect.cpp | |
| parent | Remove ExemptItem and InviteItem, these were never used (diff) | |
Annotations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5254 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chanprotect.cpp')
| -rw-r--r-- | src/modules/m_chanprotect.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index e2b121965..2f384f001 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -32,6 +32,8 @@ const char* fakevalue = "on"; */ bool unload_kludge = false; +/** Handles basic operation of +qa channel modes + */ class FounderProtectBase { private: @@ -143,6 +145,8 @@ class FounderProtectBase } }; +/** Abstraction of FounderProtectBase for channel mode +q + */ class ChanFounder : public ModeHandler, public FounderProtectBase { char* dummyptr; @@ -199,6 +203,8 @@ class ChanFounder : public ModeHandler, public FounderProtectBase } }; +/** Abstraction of FounderProtectBase for channel mode +a + */ class ChanProtect : public ModeHandler, public FounderProtectBase { char* dummyptr; |
