1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 18:43:14 +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
@@ -13,7 +13,8 @@
static bool SendRegmail(User *u, const NickAlias *na, BotInfo *bi);
class CommandNSConfirm : public Command
class CommandNSConfirm
: public Command
{
public:
CommandNSConfirm(Module *creator) : Command(creator, "nickserv/confirm", 1, 2)
@@ -114,7 +115,8 @@ public:
}
};
class CommandNSRegister : public Command
class CommandNSRegister
: public Command
{
public:
CommandNSRegister(Module *creator) : Command(creator, "nickserv/register", 1, 2)
@@ -309,7 +311,8 @@ public:
}
};
class CommandNSResend : public Command
class CommandNSResend
: public Command
{
public:
CommandNSResend(Module *creator) : Command(creator, "nickserv/resend", 0, 0)
@@ -366,7 +369,8 @@ public:
}
};
class NSRegister : public Module
class NSRegister
: public Module
{
CommandNSRegister commandnsregister;
CommandNSConfirm commandnsconfirm;