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:
@@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user