summaryrefslogtreecommitdiffstats
path: root/src/engine/GraphObjectImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/GraphObjectImpl.cpp')
-rw-r--r--src/engine/GraphObjectImpl.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/engine/GraphObjectImpl.cpp b/src/engine/GraphObjectImpl.cpp
index c257b319..6ee89478 100644
--- a/src/engine/GraphObjectImpl.cpp
+++ b/src/engine/GraphObjectImpl.cpp
@@ -28,7 +28,6 @@ namespace Ingen {
using namespace Shared;
-
GraphObjectImpl::GraphObjectImpl(Shared::LV2URIMap& uris,
GraphObjectImpl* parent, const Symbol& symbol)
: ResourceImpl(uris, parent ? parent->path().child(symbol) : Raul::Path::root())
@@ -38,21 +37,18 @@ GraphObjectImpl::GraphObjectImpl(Shared::LV2URIMap& uris,
{
}
-
void
GraphObjectImpl::add_meta_property(const Raul::URI& key, const Atom& value)
{
add_property(key, Resource::Property(value, Resource::INTERNAL));
}
-
void
GraphObjectImpl::set_meta_property(const Raul::URI& key, const Atom& value)
{
set_property(key, Resource::Property(value, Resource::INTERNAL));
}
-
const Atom&
GraphObjectImpl::get_property(const Raul::URI& key) const
{
@@ -61,19 +57,16 @@ GraphObjectImpl::get_property(const Raul::URI& key) const
return (i != properties().end()) ? i->second : null_atom;
}
-
PatchImpl*
GraphObjectImpl::parent_patch() const
{
return dynamic_cast<PatchImpl*>((NodeImpl*)_parent);
}
-
SharedPtr<GraphObject>
GraphObjectImpl::find_child(const string& name) const
{
throw;
}
-
} // namespace Ingen