summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.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/InputPort.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/InputPort.h')
-rw-r--r--src/libs/engine/InputPort.h10
1 files changed, 5 insertions, 5 deletions
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 <string>
#include <cstdlib>
#include <cassert>
+#include <raul/List.h>
#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<TypedConnection<T>*>* const c);
- ListNode<TypedConnection<T>*>* remove_connection(const OutputPort<T>* const src_port);
+ void add_connection(Raul::ListNode<TypedConnection<T>*>* const c);
+ Raul::ListNode<TypedConnection<T>*>* remove_connection(const OutputPort<T>* const src_port);
- const List<TypedConnection<T>*>& connections() { return _connections; }
+ const Raul::List<TypedConnection<T>*>& connections() { return _connections; }
void process(SampleCount nframes, FrameTime start, FrameTime end);
@@ -68,7 +68,7 @@ public:
private:
- List<TypedConnection<T>*> _connections;
+ Raul::List<TypedConnection<T>*> _connections;
// This is just stupid...
using TypedPort<T>::_buffers;