diff options
author | David Robillard <d@drobilla.net> | 2007-02-09 19:19:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-09 19:19:31 +0000 |
commit | 07c3b4ce3ed385368147bd4f2e058f83d9064b0d (patch) | |
tree | 2a6ca2cba56875ab9d13679c6fcc25aa7d5676b1 /slv2 | |
parent | 984193c0f86ac3c413bc2646c2601fa9ba49f9af (diff) | |
download | lilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.tar.gz lilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.tar.bz2 lilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.zip |
Removed data type stuff from SLV2.
Reworked event system in FlowCanvas to use signals.
Added straight connections and arrowheads to FlowCanvas, Ellipse fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@293 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r-- | slv2/port.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/slv2/port.h b/slv2/port.h index 7b1d98a..5c29774 100644 --- a/slv2/port.h +++ b/slv2/port.h @@ -87,25 +87,13 @@ slv2_port_get_name(SLV2Plugin* plugin, SLV2PortID id); -/** Get the class (direction and rate) of a port. +/** Get the class (input/output, data type, rate...) of a port. */ SLV2PortClass slv2_port_get_class(SLV2Plugin* plugin, SLV2PortID id); -/** Get the data type of a port (as a URI). - * - * The only data type included in the core LV2 specification is lv2:float. - * Compare this return value with SLV2_DATA_TYPE_FLOAT to check for it. - * - * Returned string must be free()'d by caller. - */ -char* -slv2_port_get_data_type(SLV2Plugin* plugin, - SLV2PortID id); - - /** Get the default value of a port. * * Only valid for ports with a data type of lv2:float. |