From 3dd4b42f3054f819c865e9415c4b86ba78d43aec Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 May 2012 03:56:54 +0000 Subject: "Connection" => "Edge" git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4345 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Patch.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ingen/Patch.hpp') diff --git a/ingen/Patch.hpp b/ingen/Patch.hpp index 807b843a..c0056f44 100644 --- a/ingen/Patch.hpp +++ b/ingen/Patch.hpp @@ -26,19 +26,19 @@ namespace Ingen { -class Connection; +class Edge; -/** A Path (graph of Nodes/Connections) +/** A Path (graph of Nodes/Edges) * * \ingroup interface */ class Patch : virtual public Node { public: - typedef std::pair ConnectionsKey; - typedef std::map< ConnectionsKey, SharedPtr > Connections; + typedef std::pair EdgesKey; + typedef std::map< EdgesKey, SharedPtr > Edges; - virtual const Connections& connections() const = 0; + virtual const Edges& edges() const = 0; virtual bool enabled() const = 0; virtual uint32_t internal_poly() const = 0; -- cgit v1.2.1