From 79275fc579c0dbe1ce4ca109edb95f2c1e0802a5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Dec 2012 20:34:32 +0000 Subject: "edge" => "arc". git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4897 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Node.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ingen/Node.hpp') diff --git a/ingen/Node.hpp b/ingen/Node.hpp index db796ef7..42e21ee3 100644 --- a/ingen/Node.hpp +++ b/ingen/Node.hpp @@ -29,7 +29,7 @@ class Symbol; namespace Ingen { -class Edge; +class Arc; class Plugin; class Store; @@ -54,12 +54,12 @@ public: PORT }; - typedef std::pair EdgesKey; - typedef std::map< EdgesKey, SharedPtr > Edges; + typedef std::pair ArcsKey; + typedef std::map< ArcsKey, SharedPtr > Arcs; // Graphs only - Edges& edges() { return _edges; } - const Edges& edges() const { return _edges; } + Arcs& arcs() { return _arcs; } + const Arcs& arcs() const { return _arcs; } // Blocks and graphs only virtual uint32_t num_ports() const { return 0; } @@ -97,7 +97,7 @@ protected: : Resource(uris, path_to_uri(path)) {} - Edges _edges; ///< Graphs only + Arcs _arcs; ///< Graphs only }; } // namespace Ingen -- cgit v1.2.1