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/Node.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/libs/engine/Node.h') diff --git a/src/libs/engine/Node.h b/src/libs/engine/Node.h index 4dc28ffc..852751fb 100644 --- a/src/libs/engine/Node.h +++ b/src/libs/engine/Node.h @@ -19,13 +19,14 @@ #define NODE_H #include +#include #include "types.h" #include "GraphObject.h" -#include "Array.h" + using std::string; -template class List; +namespace Raul { template class List; } namespace Ingen { @@ -75,7 +76,7 @@ public: virtual void set_port_buffer(size_t voice, size_t port_num, void* buf) = 0; // FIXME: Only used by client senders. Remove? - virtual const Array& ports() const = 0; + virtual const Raul::Array& ports() const = 0; virtual size_t num_ports() const = 0; virtual size_t poly() const = 0; @@ -87,14 +88,14 @@ public: /** Nodes that are connected to this Node's inputs. * (This Node depends on them) */ - virtual List* providers() = 0; - virtual void providers(List* l) = 0; + virtual Raul::List* providers() = 0; + virtual void providers(Raul::List* l) = 0; /** Nodes are are connected to this Node's outputs. * (They depend on this Node) */ - virtual List* dependants() = 0; - virtual void dependants(List* l) = 0; + virtual Raul::List* dependants() = 0; + virtual void dependants(Raul::List* l) = 0; /** The Patch this Node belongs to. */ virtual Patch* parent_patch() const = 0; -- cgit v1.2.1