summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.h
diff options
context:
space:
mode:
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;