From dcd66d6027fc4c93c06bde047a559146b0bc847e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 13 Jun 2012 04:02:21 +0000 Subject: Fix saving of control bindings. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4500 a436a847-0d15-0410-975c-d299462d15a1 --- raul/Atom.hpp | 11 ----------- 1 file changed, 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 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 -- cgit v1.2.1