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

Added a new database format and sqlite support. Also moved db-convert to a module.

This commit is contained in:
Adam
2011-09-25 04:19:15 -04:00
parent 43201ead95
commit 1f2399de36
75 changed files with 4143 additions and 5880 deletions
+16
View File
@@ -1,6 +1,22 @@
#include "services.h"
#include "modules.h"
std::vector<SerializableBase *> serialized_types;
std::list<SerializableBase *> serialized_items;
void RegisterTypes()
{
Serializable<NickCore>::Alloc.Register("NickCore");
Serializable<NickAlias>::Alloc.Register("NickAlias");
Serializable<BotInfo>::Alloc.Register("BotInfo");
Serializable<ChannelInfo>::Alloc.Register("ChannelInfo");
Serializable<LogSetting>::Alloc.Register("LogSetting");
Serializable<ModeLock>::Alloc.Register("ModeLock");
Serializable<AutoKick>::Alloc.Register("AutoKick");
Serializable<BadWord>::Alloc.Register("BadWord");
Serializable<Memo>::Alloc.Register("Memo");
}
Base::Base()
{
}