summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/DestroyEvent.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/DestroyEvent.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/DestroyEvent.h')
-rw-r--r--src/libs/engine/events/DestroyEvent.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/libs/engine/events/DestroyEvent.h b/src/libs/engine/events/DestroyEvent.h
index 49c7b074..435736aa 100644
--- a/src/libs/engine/events/DestroyEvent.h
+++ b/src/libs/engine/events/DestroyEvent.h
@@ -18,14 +18,17 @@
#ifndef DESTROYEVENT_H
#define DESTROYEVENT_H
-#include "raul/Path.h"
-#include "QueuedEvent.h"
#include <string>
+#include <raul/Path.h>
+#include "QueuedEvent.h"
+
using std::string;
-template<typename T> class Array;
-template<typename T> class ListNode;
+namespace Raul {
+ template<typename T> class Array;
+ template<typename T> class ListNode;
+}
template<typename T> class TreeNode;
namespace Ingen {
@@ -61,11 +64,11 @@ private:
Node* _node; ///< Same as _object if it is a Node, otherwise NULL
Port* _port; ///< Same as _object if it is a Port, otherwise NULL
DriverPort* _driver_port;
- ListNode<Node*>* _patch_node_listnode;
- ListNode<Port*>* _patch_port_listnode;
+ Raul::ListNode<Node*>* _patch_node_listnode;
+ Raul::ListNode<Port*>* _patch_port_listnode;
TreeNode<GraphObject*>* _store_treenode;
- Array<Port*>* _ports_array; ///< New (external) ports array for Patch
- Array<Node*>* _process_order; ///< Patch's new process order
+ Raul::Array<Port*>* _ports_array; ///< New (external) ports array for Patch
+ Raul::Array<Node*>* _process_order; ///< Patch's new process order
DisconnectNodeEvent* _disconnect_node_event;
DisconnectPortEvent* _disconnect_port_event;
};