1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 19:43:14 +02:00

Don't dynamically allocate commands in modules anymore, instead made them members of modules. This means the commands are automatically destructed when the module is unloaded. Cleans up some old ugly code.

This commit is contained in:
Adam
2010-07-31 21:37:45 -04:00
parent 9d0d44d738
commit c770c47e18
149 changed files with 743 additions and 444 deletions
+9 -6
View File
@@ -16,7 +16,7 @@
class CommandNSSetGreet : public Command
{
public:
CommandNSSetGreet(const Anope::string &cname) : Command(cname, 0)
CommandNSSetGreet() : Command("GREET", 0)
{
}
@@ -51,7 +51,7 @@ class CommandNSSetGreet : public Command
class CommandNSSASetGreet : public Command
{
public:
CommandNSSASetGreet(const Anope::string &cname) : Command(cname, 1, 2, "nickserv/saset/greet")
CommandNSSASetGreet() : Command("GREET", 1, 2, "nickserv/saset/greet")
{
}
@@ -91,6 +91,9 @@ class CommandNSSASetGreet : public Command
class NSSetGreet : public Module
{
CommandNSSetGreet commandnssetgreet;
CommandNSSASetGreet commandnssasetgreet;
public:
NSSetGreet(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator)
{
@@ -99,22 +102,22 @@ class NSSetGreet : public Module
Command *c = FindCommand(NickServ, "SET");
if (c)
c->AddSubcommand(new CommandNSSetGreet("GREET"));
c->AddSubcommand(&commandnssetgreet);
c = FindCommand(NickServ, "SASET");
if (c)
c->AddSubcommand(new CommandNSSASetGreet("GREET"));
c->AddSubcommand(&commandnssasetgreet);
}
~NSSetGreet()
{
Command *c = FindCommand(NickServ, "SET");
if (c)
c->DelSubcommand("GREET");
c->DelSubcommand(&commandnssetgreet);
c = FindCommand(NickServ, "SASET");
if (c)
c->DelSubcommand("GREET");
c->DelSubcommand(&commandnssasetgreet);
}
};