1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 05:06:37 +02:00

Allow modules to store data in their own databases.

This commit is contained in:
Adam
2012-10-01 18:50:29 -04:00
parent f14a3dfb8a
commit a434baed91
33 changed files with 166 additions and 191 deletions
+1 -6
View File
@@ -90,7 +90,7 @@ const std::list<AccessProvider *>& AccessProvider::GetProviders()
return providers;
}
ChanAccess::ChanAccess(AccessProvider *p) : provider(p)
ChanAccess::ChanAccess(AccessProvider *p) : Serializable("ChanAccess"), provider(p)
{
}
@@ -98,11 +98,6 @@ ChanAccess::~ChanAccess()
{
}
const Anope::string ChanAccess::serialize_name() const
{
return "ChanAccess";
}
Serialize::Data ChanAccess::serialize() const
{
Serialize::Data data;