From df8ee18c0139f889bf7c697713a2205364845464 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 25 Jan 2008 06:55:57 +0000 Subject: Overhaul SLV2 API to return/take SLV2Value (instead of strings or primitives) wherever possible. Make 'index' a fundemental property of ingen ports. git-svn-id: http://svn.drobilla.net/lad/ingen@1113 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/InputPort.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libs/engine/InputPort.cpp') diff --git a/src/libs/engine/InputPort.cpp b/src/libs/engine/InputPort.cpp index 7e5f6623..6e216384 100644 --- a/src/libs/engine/InputPort.cpp +++ b/src/libs/engine/InputPort.cpp @@ -36,8 +36,9 @@ InputPort::InputPort(NodeImpl* parent, uint32_t index, uint32_t poly, DataType type, + const Atom& value, size_t buffer_size) - : PortImpl(parent, name, index, poly, type, buffer_size) + : PortImpl(parent, name, index, poly, type, value, buffer_size) { } -- cgit v1.2.1