summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Port.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-23 02:33:55 +0000
committerDavid Robillard <d@drobilla.net>2007-07-23 02:33:55 +0000
commite2cfcb6288b000abccb15831e9dde8b8283eb36e (patch)
treecba97a0b17a07d159f169380c7dcf7f7ae97cb1a /src/libs/engine/Port.cpp
parent35541af3f4fdf9e5b934012c01bd2724b00fb7b8 (diff)
downloadingen-e2cfcb6288b000abccb15831e9dde8b8283eb36e.tar.gz
ingen-e2cfcb6288b000abccb15831e9dde8b8283eb36e.tar.bz2
ingen-e2cfcb6288b000abccb15831e9dde8b8283eb36e.zip
Removed glib dependency from LV2 OSC code.
Made LV2 OSC code C++ safe. Preliminary work on OSC patching in Ingen. Added LV2 OSC printing stuff to repository. Broke building Ingen separately. Whatever. git-svn-id: http://svn.drobilla.net/lad/ingen@599 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Port.cpp')
-rw-r--r--src/libs/engine/Port.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/Port.cpp b/src/libs/engine/Port.cpp
index bfb09a35..f82da743 100644
--- a/src/libs/engine/Port.cpp
+++ b/src/libs/engine/Port.cpp
@@ -24,8 +24,8 @@
namespace Ingen {
-// Yeah, this shouldn't be here.
-const char* const DataType::type_uris[3] = { "UNKNOWN", "FLOAT", "MIDI" };
+// FIXME: Make these actually URIs..
+const char* const DataType::type_uris[4] = { "UNKNOWN", "FLOAT", "MIDI", "OSC" };
Port::Port(Node* const node, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size)