diff options
author | Adam <Adam@anope.org> | 2013-01-21 22:31:16 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-21 22:31:16 -0500 |
commit | ddaa001dafb5122e6e363e4acbbe6ce045b7b104 (patch) | |
tree | 0364a76606ac6e2881ebd663601ce260f7c1101e /include/serialize.h | |
parent | 51c049e1a738e9124bab3961f35b830906517421 (diff) |
Merge usefulness of Flags and Extensible classes into Extensible, made most flags we have juse strings instead of defines/enums
Diffstat (limited to 'include/serialize.h')
-rw-r--r-- | include/serialize.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/serialize.h b/include/serialize.h index 973c5ba51..918944804 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -32,6 +32,7 @@ namespace Serialize virtual ~Data() { } virtual std::iostream& operator[](const Anope::string &key) = 0; + virtual std::set<Anope::string> KeySet() const { throw CoreException("Not supported"); } virtual bool IsEqual(Data *other) { throw CoreException("Not supported"); } |