mirror of
https://github.com/anope/anope.git
synced 2026-07-06 11:33:13 +02:00
Improve the layout of types that inherit from another type.
This commit is contained in:
@@ -23,7 +23,8 @@
|
||||
|
||||
static SSL_CTX *server_ctx, *client_ctx;
|
||||
|
||||
class MySSLService : public SSLService
|
||||
class MySSLService
|
||||
: public SSLService
|
||||
{
|
||||
public:
|
||||
MySSLService(Module *o, const Anope::string &n);
|
||||
@@ -34,7 +35,8 @@ public:
|
||||
void Init(Socket *s) override;
|
||||
};
|
||||
|
||||
class SSLSocketIO : public SocketIO
|
||||
class SSLSocketIO
|
||||
: public SocketIO
|
||||
{
|
||||
public:
|
||||
/* The SSL socket for this socket */
|
||||
@@ -91,7 +93,8 @@ public:
|
||||
|
||||
class SSLModule;
|
||||
static SSLModule *me;
|
||||
class SSLModule : public Module
|
||||
class SSLModule
|
||||
: public Module
|
||||
{
|
||||
Anope::string certfile, keyfile;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user