aboutsummaryrefslogtreecommitdiffstats
path: root/src/client/ClientObject.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
committerDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
commitbb67af535ef57101f6b543c99e9489e984c8f1ec (patch)
treea18aebb32a20ccad6a51f57e5e037f43eb742639 /src/client/ClientObject.cpp
parentb8e54f8f66abaf71927a023e1cfee905842078aa (diff)
downloadmachina-bb67af535ef57101f6b543c99e9489e984c8f1ec.tar.gz
machina-bb67af535ef57101f6b543c99e9489e984c8f1ec.tar.bz2
machina-bb67af535ef57101f6b543c99e9489e984c8f1ec.zip
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
Diffstat (limited to 'src/client/ClientObject.cpp')
-rw-r--r--src/client/ClientObject.cpp6
1 files changed, 3 insertions, 3 deletions
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;