1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 07:53:12 +02:00

Improve the layout of types that inherit from another type.

This commit is contained in:
Sadie Powell
2024-01-23 15:28:23 +00:00
parent 398d674cf4
commit a6a0f6c447
232 changed files with 1648 additions and 798 deletions
+8 -4
View File
@@ -36,7 +36,8 @@ struct IdentifyInfo
}
};
class IdentifyInterface : public LDAPInterface
class IdentifyInterface
: public LDAPInterface
{
IdentifyInfo *ii;
@@ -127,7 +128,8 @@ public:
}
};
class OnIdentifyInterface : public LDAPInterface
class OnIdentifyInterface
: public LDAPInterface
{
Anope::string uid;
@@ -172,7 +174,8 @@ public:
}
};
class OnRegisterInterface : public LDAPInterface
class OnRegisterInterface
: public LDAPInterface
{
public:
OnRegisterInterface(Module *m) : LDAPInterface(m) { }
@@ -188,7 +191,8 @@ public:
}
};
class ModuleLDAPAuthentication : public Module
class ModuleLDAPAuthentication
: public Module
{
ServiceReference<LDAPProvider> ldap;
OnRegisterInterface orinterface;