summaryrefslogtreecommitdiff
path: root/modules/extra/m_ldap.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-01-23 13:54:16 +0000
committerSadie Powell <sadie@witchery.services>2024-01-23 16:53:06 +0000
commit72acef4e159df5dcdb93b3c13b2f9d2e5e4c21a9 (patch)
treefc0a965612b45478e3b6f1566641df12790a818d /modules/extra/m_ldap.cpp
parenta6a0f6c44780c839b2269f4f29a26ecfdbd95544 (diff)
Mark types that have no inheritors as final.
Diffstat (limited to 'modules/extra/m_ldap.cpp')
-rw-r--r--modules/extra/m_ldap.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/extra/m_ldap.cpp b/modules/extra/m_ldap.cpp
index bdfa243f0..31e712662 100644
--- a/modules/extra/m_ldap.cpp
+++ b/modules/extra/m_ldap.cpp
@@ -72,7 +72,7 @@ public:
virtual int run() = 0;
};
-class LDAPBind
+class LDAPBind final
: public LDAPRequest
{
Anope::string who, pass;
@@ -89,7 +89,7 @@ public:
int run() override;
};
-class LDAPSearchRequest
+class LDAPSearchRequest final
: public LDAPRequest
{
Anope::string base;
@@ -107,7 +107,7 @@ public:
int run() override;
};
-class LDAPAdd
+class LDAPAdd final
: public LDAPRequest
{
Anope::string dn;
@@ -125,7 +125,7 @@ public:
int run() override;
};
-class LDAPDel
+class LDAPDel final
: public LDAPRequest
{
Anope::string dn;
@@ -141,7 +141,7 @@ public:
int run() override;
};
-class LDAPModify
+class LDAPModify final
: public LDAPRequest
{
Anope::string base;
@@ -159,7 +159,7 @@ public:
int run() override;
};
-class LDAPService
+class LDAPService final
: public LDAPProvider
, public Thread
, public Condition
@@ -509,7 +509,7 @@ public:
}
};
-class ModuleLDAP
+class ModuleLDAP final
: public Module
, public Pipe
{