summaryrefslogtreecommitdiffstats
path: root/ingen/Patch.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-11 03:56:54 +0000
committerDavid Robillard <d@drobilla.net>2012-05-11 03:56:54 +0000
commit3dd4b42f3054f819c865e9415c4b86ba78d43aec (patch)
tree656d152cdffdd9196013fe9f35d46f4cf73c6927 /ingen/Patch.hpp
parent7be6d5d05756a7dea20c494d56f364b4dc064c88 (diff)
downloadingen-3dd4b42f3054f819c865e9415c4b86ba78d43aec.tar.gz
ingen-3dd4b42f3054f819c865e9415c4b86ba78d43aec.tar.bz2
ingen-3dd4b42f3054f819c865e9415c4b86ba78d43aec.zip
"Connection" => "Edge"
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4345 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Patch.hpp')
-rw-r--r--ingen/Patch.hpp10
1 files changed, 5 insertions, 5 deletions
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<const Port*, const Port*> ConnectionsKey;
- typedef std::map< ConnectionsKey, SharedPtr<Connection> > Connections;
+ typedef std::pair<const Port*, const Port*> EdgesKey;
+ typedef std::map< EdgesKey, SharedPtr<Edge> > 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;