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/InputPort.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/libs/engine/InputPort.h') diff --git a/src/libs/engine/InputPort.h b/src/libs/engine/InputPort.h index 0f96546f..14efd605 100644 --- a/src/libs/engine/InputPort.h +++ b/src/libs/engine/InputPort.h @@ -21,8 +21,8 @@ #include #include #include +#include #include "TypedPort.h" -#include "List.h" #include "MidiMessage.h" using std::string; @@ -51,10 +51,10 @@ public: InputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size); virtual ~InputPort() {} - void add_connection(ListNode*>* const c); - ListNode*>* remove_connection(const OutputPort* const src_port); + void add_connection(Raul::ListNode*>* const c); + Raul::ListNode*>* remove_connection(const OutputPort* const src_port); - const List*>& connections() { return _connections; } + const Raul::List*>& connections() { return _connections; } void process(SampleCount nframes, FrameTime start, FrameTime end); @@ -68,7 +68,7 @@ public: private: - List*> _connections; + Raul::List*> _connections; // This is just stupid... using TypedPort::_buffers; -- cgit v1.2.1