diff options
author | Adam <Adam@anope.org> | 2011-09-25 04:19:15 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-09-25 04:19:15 -0400 |
commit | 1f2399de364c09adcce4193895cd362d80ffdfc5 (patch) | |
tree | 5f40fc531f22c174b6e10bb7bc12842a4a21d30b /src/misc.cpp | |
parent | 43201ead9575a74e350710bc191f4ac67366aca7 (diff) |
Added a new database format and sqlite support. Also moved db-convert to a module.
Diffstat (limited to 'src/misc.cpp')
-rw-r--r-- | src/misc.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/misc.cpp b/src/misc.cpp index 5e41d42b7..0090dfa3b 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -14,6 +14,19 @@ #include "version.h" #include "modules.h" +ExtensibleItem::ExtensibleItem() +{ +} + +ExtensibleItem::~ExtensibleItem() +{ +} + +void ExtensibleItem::OnDelete() +{ + delete this; +} + struct arc4_stream { uint8 i; |