From e343345cf54172720f3494ccef87d62b2c688d0a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 9 Feb 2007 22:39:56 +0000 Subject: Moved Deletable (formerly MaidObject), List, and Array from Ingen to Raul. git-svn-id: http://svn.drobilla.net/lad/ingen@294 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/events/ConnectionEvent.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/libs/engine/events/ConnectionEvent.h') diff --git a/src/libs/engine/events/ConnectionEvent.h b/src/libs/engine/events/ConnectionEvent.h index b0c81923..79ffeaa3 100644 --- a/src/libs/engine/events/ConnectionEvent.h +++ b/src/libs/engine/events/ConnectionEvent.h @@ -24,8 +24,10 @@ #include "types.h" using std::string; -template class ListNode; -template class Array; +namespace Raul { + template class ListNode; + template class Array; +} namespace Ingen { @@ -92,10 +94,10 @@ private: InputPort* _dst_port; Patch* _patch; - Array* _process_order; ///< New process order for Patch + Raul::Array* _process_order; ///< New process order for Patch TypedConnection* _connection; - ListNode* _patch_listnode; - ListNode*>* _port_listnode; + Raul::ListNode* _patch_listnode; + Raul::ListNode*>* _port_listnode; bool _succeeded; }; -- cgit v1.2.1