summaryrefslogtreecommitdiffstats
path: root/src/server/GraphObjectImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/GraphObjectImpl.cpp')
-rw-r--r--src/server/GraphObjectImpl.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/server/GraphObjectImpl.cpp b/src/server/GraphObjectImpl.cpp
index 8d052540..8310b670 100644
--- a/src/server/GraphObjectImpl.cpp
+++ b/src/server/GraphObjectImpl.cpp
@@ -22,14 +22,13 @@
#include "ThreadManager.hpp"
using namespace std;
-using namespace Raul;
namespace Ingen {
namespace Server {
GraphObjectImpl::GraphObjectImpl(Ingen::Shared::URIs& uris,
- GraphObjectImpl* parent,
- const Symbol& symbol)
+ GraphObjectImpl* parent,
+ const Raul::Symbol& symbol)
: ResourceImpl(uris, parent ? parent->path().child(symbol) : Raul::Path::root())
, _parent(parent)
, _path(parent ? parent->path().child(symbol) : "/")
@@ -37,11 +36,11 @@ GraphObjectImpl::GraphObjectImpl(Ingen::Shared::URIs& uris,
{
}
-const Atom&
+const Raul::Atom&
GraphObjectImpl::get_property(const Raul::URI& key) const
{
ThreadManager::assert_not_thread(THREAD_PROCESS);
- static const Atom null_atom;
+ static const Raul::Atom null_atom;
Resource::Properties::const_iterator i = properties().find(key);
return (i != properties().end()) ? i->second : null_atom;
}