summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-26 20:04:59 +0200
committerDavid Robillard <d@drobilla.net>2017-03-26 20:04:59 +0200
commit5df29e8cc91115098dcb09978722c76b71689fa3 (patch)
tree12d807052d9ab41fe6ebc547c5556b492f0c8e97 /ingen
parentff5fb176daad42b2727b02885f9a4407b694ba52 (diff)
downloadingen-5df29e8cc91115098dcb09978722c76b71689fa3.tar.gz
ingen-5df29e8cc91115098dcb09978722c76b71689fa3.tar.bz2
ingen-5df29e8cc91115098dcb09978722c76b71689fa3.zip
Remove Node::path() and Node::symbol()
Diffstat (limited to 'ingen')
-rw-r--r--ingen/DataAccess.hpp2
-rw-r--r--ingen/InstanceAccess.hpp2
-rw-r--r--ingen/Node.hpp4
3 files changed, 2 insertions, 6 deletions
diff --git a/ingen/DataAccess.hpp b/ingen/DataAccess.hpp
index 730cf921..c3a6a625 100644
--- a/ingen/DataAccess.hpp
+++ b/ingen/DataAccess.hpp
@@ -40,7 +40,7 @@ struct DataAccess : public Ingen::LV2Features::Feature
return SPtr<LV2_Feature>();
}
- Node* store_node = world->store()->get(node->path());
+ Node* store_node = world->store()->get(node->uri());
if (!store_node) {
return SPtr<LV2_Feature>();
}
diff --git a/ingen/InstanceAccess.hpp b/ingen/InstanceAccess.hpp
index d30ebf1d..47409a05 100644
--- a/ingen/InstanceAccess.hpp
+++ b/ingen/InstanceAccess.hpp
@@ -32,7 +32,7 @@ struct InstanceAccess : public Ingen::LV2Features::Feature
return SPtr<LV2_Feature>();
}
- Node* store_node = world->store()->get(node->path());
+ Node* store_node = world->store()->get(node->uri());
if (!store_node) {
return SPtr<LV2_Feature>();
}
diff --git a/ingen/Node.hpp b/ingen/Node.hpp
index 5f8e0bc6..326f3e3c 100644
--- a/ingen/Node.hpp
+++ b/ingen/Node.hpp
@@ -62,10 +62,6 @@ public:
// Plugin blocks only
virtual bool save_state(const std::string& dir) const { return false; }
- // All objects
- virtual const Raul::Path& path() const = 0;
- virtual const Raul::Symbol& symbol() const = 0;
-
protected:
Node(const URIs& uris, const Raul::Path& path)
: Resource(uris, path_to_uri(path))