diff options
Diffstat (limited to 'src/libs/engine/Patch.hpp')
-rw-r--r-- | src/libs/engine/Patch.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
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<ConnectionImpl> > Connections; - typedef List<NodeImpl*> Nodes; + typedef List< SharedPtr<Shared::Connection> > Connections; + typedef List<NodeImpl*> Nodes; void add_node(Nodes::Node* tn); Nodes::Node* remove_node(const string& name); |