From bb67af535ef57101f6b543c99e9489e984c8f1ec Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 19:55:13 +0000 Subject: Move Atom implementation out of Raul so it can depend on LV2. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5076 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientObject.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/ClientObject.cpp') diff --git a/src/client/ClientObject.cpp b/src/client/ClientObject.cpp index 475d8e3..9481d10 100644 --- a/src/client/ClientObject.cpp +++ b/src/client/ClientObject.cpp @@ -33,16 +33,16 @@ ClientObject::ClientObject(const ClientObject& copy, uint64_t id) {} void -ClientObject::set(URIInt key, const Raul::Atom& value) +ClientObject::set(URIInt key, const Atom& value) { _properties[key] = value; signal_property.emit(key, value); } -const Raul::Atom& +const Atom& ClientObject::get(URIInt key) const { - static const Raul::Atom null_atom; + static const Atom null_atom; Properties::const_iterator i = _properties.find(key); if (i != _properties.end()) { return i->second; -- cgit v1.2.1