summaryrefslogtreecommitdiffstats
path: root/ingen/Node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/Node.hpp')
-rw-r--r--ingen/Node.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/ingen/Node.hpp b/ingen/Node.hpp
index 2cbce01c..293ac058 100644
--- a/ingen/Node.hpp
+++ b/ingen/Node.hpp
@@ -72,6 +72,13 @@ public:
virtual const Raul::Symbol& symbol() const = 0;
virtual Node* graph_parent() const = 0;
+ Raul::URI base_uri() const {
+ if (uri()[uri().size() - 1] == '/') {
+ return uri();
+ }
+ return Raul::URI(uri() + '/');
+ }
+
static Raul::URI root_uri() { return Raul::URI("ingen:/root"); }
static bool uri_is_path(const Raul::URI& uri) {