summaryrefslogtreecommitdiffstats
path: root/src/shared/URIs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/URIs.cpp')
-rw-r--r--src/shared/URIs.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/shared/URIs.cpp b/src/shared/URIs.cpp
index 1cefbca3..3ca8a69d 100644
--- a/src/shared/URIs.cpp
+++ b/src/shared/URIs.cpp
@@ -28,6 +28,7 @@
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
#include "lv2/lv2plug.in/ns/ext/midi/midi.h"
+#include "lv2/lv2plug.in/ns/ext/patch/patch.h"
#include "raul/log.hpp"
using namespace std;
@@ -64,13 +65,17 @@ URIs::URIs(Raul::Forge& f, LV2URIMap* map)
, cv_CVPort (map, "http://lv2plug.in/ns/ext/cv-port#CVPort")
, doap_name (map, "http://usefulinc.com/ns/doap#name")
, ev_EventPort (map, "http://lv2plug.in/ns/ext/event#EventPort")
+ , ingen_Connection (map, NS_INGEN "Connection")
, ingen_Internal (map, NS_INGEN "Internal")
, ingen_Node (map, NS_INGEN "Node")
, ingen_Patch (map, NS_INGEN "Patch")
, ingen_Port (map, NS_INGEN "Port")
, ingen_activity (map, NS_INGEN "activity")
, ingen_broadcast (map, NS_INGEN "broadcast")
+ , ingen_canvasX (map, NS_INGEN "canvasX")
+ , ingen_canvasY (map, NS_INGEN "canvasY")
, ingen_controlBinding (map, NS_INGEN "controlBinding")
+ , ingen_destination (map, NS_INGEN "destination")
, ingen_document (map, NS_INGEN "document")
, ingen_enabled (map, NS_INGEN "enabled")
, ingen_engine (map, NS_INGEN "engine")
@@ -80,9 +85,8 @@ URIs::URIs(Raul::Forge& f, LV2URIMap* map)
, ingen_polyphony (map, NS_INGEN "polyphony")
, ingen_sampleRate (map, NS_INGEN "sampleRate")
, ingen_selected (map, NS_INGEN "selected")
+ , ingen_source (map, NS_INGEN "source")
, ingen_value (map, NS_INGEN "value")
- , ingen_canvasX (map, NS_INGEN "canvasX")
- , ingen_canvasY (map, NS_INGEN "canvasY")
, lv2_AudioPort (map, LV2_CORE__AudioPort)
, lv2_ControlPort (map, LV2_CORE__ControlPort)
, lv2_InputPort (map, LV2_CORE__InputPort)
@@ -106,6 +110,12 @@ URIs::URIs(Raul::Forge& f, LV2URIMap* map)
, midi_NoteOn (map, LV2_MIDI__NoteOn)
, midi_controllerNumber (map, LV2_MIDI__controllerNumber)
, midi_noteNumber (map, LV2_MIDI__noteNumber)
+ , patch_Get (map, LV2_PATCH__Get)
+ , patch_Put (map, LV2_PATCH__Put)
+ , patch_Response (map, LV2_PATCH__Response)
+ , patch_body (map, LV2_PATCH__body)
+ , patch_request (map, LV2_PATCH__request)
+ , patch_subject (map, LV2_PATCH__subject)
, rdf_instanceOf (map, NS_RDF "instanceOf")
, rdf_type (map, NS_RDF "type")
, rdfs_seeAlso (map, NS_RDFS "seeAlso")