From 260a406b12997fdab7446a9980e921d8cfc46915 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 8 Oct 2007 04:51:33 +0000 Subject: SharedPtr-ize engine-side Connections (towards merge for patch->connections()). git-svn-id: http://svn.drobilla.net/lad/ingen@846 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Patch.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/libs/engine/Patch.hpp') diff --git a/src/libs/engine/Patch.hpp b/src/libs/engine/Patch.hpp index 3097a87a..8b9f9ad7 100644 --- a/src/libs/engine/Patch.hpp +++ b/src/libs/engine/Patch.hpp @@ -34,6 +34,8 @@ using Raul::List; namespace Ingen { +namespace Shared { class Connection; } + class ConnectionImpl; class Engine; class CompiledPatch; @@ -85,8 +87,8 @@ public: // Patch specific stuff not inherited from Node - typedef List< SharedPtr > Connections; - typedef List Nodes; + typedef List< SharedPtr > Connections; + typedef List Nodes; void add_node(Nodes::Node* tn); Nodes::Node* remove_node(const string& name); -- cgit v1.2.1