diff options
author | David Robillard <d@drobilla.net> | 2012-06-13 04:02:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-06-13 04:02:21 +0000 |
commit | dcd66d6027fc4c93c06bde047a559146b0bc847e (patch) | |
tree | 6b60b7d0d85adfbd9f41274427885dabccbc8919 /raul | |
parent | 6bff0844705aecff88956412790e5b132be1a49c (diff) | |
download | raul-dcd66d6027fc4c93c06bde047a559146b0bc847e.tar.gz raul-dcd66d6027fc4c93c06bde047a559146b0bc847e.tar.bz2 raul-dcd66d6027fc4c93c06bde047a559146b0bc847e.zip |
Fix saving of control bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4500 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul')
-rw-r--r-- | raul/Atom.hpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/raul/Atom.hpp b/raul/Atom.hpp index c657fbf..2ceed89 100644 --- a/raul/Atom.hpp +++ b/raul/Atom.hpp @@ -112,10 +112,6 @@ public: inline const char* get_uri() const { return (const char*)get_body(); } inline const char* get_string() const { return (const char*)get_body(); } - typedef std::map<Raul::Atom, Raul::Atom> DictValue; - - inline const DictValue& get_dict() const { return *(DictValue*)_val._blob; } - private: friend class Forge; @@ -161,7 +157,6 @@ public: , URI(4) , URID(5) , String(6) - , Dict(7) {} virtual ~Forge() {} @@ -189,11 +184,6 @@ public: return Atom(v.length() + 1, String, v.c_str()); } - Atom alloc(const Atom::DictValue& v) { - std::cerr << "FIXME: Atom dict" << std::endl; - return Atom(); - } - Atom alloc_uri(const char* v) { const size_t len = strlen(v); return Atom(len + 1, URI, v); @@ -209,7 +199,6 @@ public: Atom::TypeID URI; Atom::TypeID URID; Atom::TypeID String; - Atom::TypeID Dict; }; } // namespace Raul |