diff options
Diffstat (limited to 'src/libs/engine/events/DestroyEvent.hpp')
-rw-r--r-- | src/libs/engine/events/DestroyEvent.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/events/DestroyEvent.hpp b/src/libs/engine/events/DestroyEvent.hpp index 59a932b3..e253167f 100644 --- a/src/libs/engine/events/DestroyEvent.hpp +++ b/src/libs/engine/events/DestroyEvent.hpp @@ -22,6 +22,7 @@ #include <raul/Path.hpp> #include "QueuedEvent.hpp" #include "ObjectStore.hpp" +#include "Patch.hpp" using std::string; @@ -34,7 +35,6 @@ template<typename T> class TreeNode; namespace Ingen { class GraphObjectImpl; -class Patch; class NodeImpl; class PortImpl; class DriverPort; @@ -64,8 +64,8 @@ private: NodeImpl* _node; ///< Same as _object if it is a Node, otherwise NULL PortImpl* _port; ///< Same as _object if it is a Port, otherwise NULL DriverPort* _driver_port; - Raul::ListNode<NodeImpl*>* _patch_node_listnode; - Raul::ListNode<PortImpl*>* _patch_port_listnode; + Patch::Nodes::Node* _patch_node_listnode; + Raul::List<PortImpl*>::Node* _patch_port_listnode; Raul::Array<PortImpl*>* _ports_array; ///< New (external) ports array for Patch CompiledPatch* _compiled_patch; ///< Patch's new process order DisconnectNodeEvent* _disconnect_node_event; |