summaryrefslogtreecommitdiffstats
path: root/src/engine/GraphObjectImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/GraphObjectImpl.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
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