summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-08 04:05:01 +0000
committerDavid Robillard <d@drobilla.net>2013-01-08 04:05:01 +0000
commitac408e8d4ce77389e65d69e9a1ff30fd54a25ada (patch)
tree27d3f568c8a8040c345dd61a890dabd08549cd5c /ingen
parent63d21b23d262b0c5169d54822aa5723b6200c764 (diff)
downloadingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.tar.gz
ingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.tar.bz2
ingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.zip
Add support for URID ports.
Fix glib errors when resetting properties dialog. Move RDFS domain/range/classes/etc code to reusable location. Add preliminary "mesp" (message processing) plugin package. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4903 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r--ingen/Forge.hpp3
-rw-r--r--ingen/URIs.hpp1
-rw-r--r--ingen/client/PortModel.hpp1
3 files changed, 5 insertions, 0 deletions
diff --git a/ingen/Forge.hpp b/ingen/Forge.hpp
index 8e7df926..e92a9501 100644
--- a/ingen/Forge.hpp
+++ b/ingen/Forge.hpp
@@ -33,6 +33,9 @@ public:
explicit Forge(URIMap& map);
std::string str(const Raul::Atom& atom);
+
+private:
+ URIMap& _map;
};
} // namespace Ingen
diff --git a/ingen/URIs.hpp b/ingen/URIs.hpp
index 3e6427e6..77dc00d3 100644
--- a/ingen/URIs.hpp
+++ b/ingen/URIs.hpp
@@ -110,6 +110,7 @@ public:
const Quark lv2_binary;
const Quark lv2_connectionOptional;
const Quark lv2_default;
+ const Quark lv2_designation;
const Quark lv2_extensionData;
const Quark lv2_index;
const Quark lv2_integer;
diff --git a/ingen/client/PortModel.hpp b/ingen/client/PortModel.hpp
index 6a8583de..41b871ab 100644
--- a/ingen/client/PortModel.hpp
+++ b/ingen/client/PortModel.hpp
@@ -61,6 +61,7 @@ public:
return ObjectModel::is_a(Raul::URI(LV2_CORE__ControlPort))
|| ObjectModel::is_a(Raul::URI(LV2_CORE__CVPort));
}
+ bool is_uri() const;
inline bool operator==(const PortModel& pm) const { return (path() == pm.path()); }