summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/ConnectionEvent.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-09 22:39:56 +0000
committerDavid Robillard <d@drobilla.net>2007-02-09 22:39:56 +0000
commite343345cf54172720f3494ccef87d62b2c688d0a (patch)
tree67c6b3f95e9393110f78b6fa0cf44cbd12f935a4 /src/libs/engine/events/ConnectionEvent.h
parentc50fe49fea7e32b3194b163b77ee5a52480ffa33 (diff)
downloadingen-e343345cf54172720f3494ccef87d62b2c688d0a.tar.gz
ingen-e343345cf54172720f3494ccef87d62b2c688d0a.tar.bz2
ingen-e343345cf54172720f3494ccef87d62b2c688d0a.zip
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
Diffstat (limited to 'src/libs/engine/events/ConnectionEvent.h')
-rw-r--r--src/libs/engine/events/ConnectionEvent.h12
1 files changed, 7 insertions, 5 deletions
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 <typename T> class ListNode;
-template <typename T> class Array;
+namespace Raul {
+ template <typename T> class ListNode;
+ template <typename T> class Array;
+}
namespace Ingen {
@@ -92,10 +94,10 @@ private:
InputPort<T>* _dst_port;
Patch* _patch;
- Array<Node*>* _process_order; ///< New process order for Patch
+ Raul::Array<Node*>* _process_order; ///< New process order for Patch
TypedConnection<T>* _connection;
- ListNode<Connection*>* _patch_listnode;
- ListNode<TypedConnection<T>*>* _port_listnode;
+ Raul::ListNode<Connection*>* _patch_listnode;
+ Raul::ListNode<TypedConnection<T>*>* _port_listnode;
bool _succeeded;
};