summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-08 01:38:38 +0000
committerDavid Robillard <d@drobilla.net>2007-10-08 01:38:38 +0000
commit9d9efa215c52a6b75eef7e9a8b088b11dfd76a07 (patch)
tree7983e607cf87ddd4b1e099eedfb218880805717d /src/libs/engine/InputPort.hpp
parenta421a44310ee472fbee15f150d32b826a8371dbf (diff)
downloadingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.tar.gz
ingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.tar.bz2
ingen-9d9efa215c52a6b75eef7e9a8b088b11dfd76a07.zip
Shared abstract Connection interface.
Only Patch to go, now.... git-svn-id: http://svn.drobilla.net/lad/ingen@843 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/InputPort.hpp')
-rw-r--r--src/libs/engine/InputPort.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/InputPort.hpp b/src/libs/engine/InputPort.hpp
index 228371f8..1552642b 100644
--- a/src/libs/engine/InputPort.hpp
+++ b/src/libs/engine/InputPort.hpp
@@ -28,7 +28,7 @@ using std::string;
namespace Ingen {
-class Connection;
+class ConnectionImpl;
class OutputPort;
class NodeImpl;
@@ -50,10 +50,10 @@ public:
InputPort(NodeImpl* parent, const string& name, uint32_t index, uint32_t poly, DataType type, size_t buffer_size);
virtual ~InputPort() {}
- void add_connection(Raul::ListNode<Connection*>* c);
- Raul::ListNode<Connection*>* remove_connection(const OutputPort* src_port);
+ void add_connection(Raul::ListNode<ConnectionImpl*>* c);
+ Raul::ListNode<ConnectionImpl*>* remove_connection(const OutputPort* src_port);
- typedef Raul::List<Connection*> Connections;
+ typedef Raul::List<ConnectionImpl*> Connections;
const Connections& connections() { return _connections; }
void pre_process(ProcessContext& context);