diff options
Diffstat (limited to 'lilv')
-rw-r--r-- | lilv/lilv.h | 20 | ||||
-rw-r--r-- | lilv/lilvmm.hpp | 2 |
2 files changed, 0 insertions, 22 deletions
diff --git a/lilv/lilv.h b/lilv/lilv.h index 51e029b..9631efe 100644 --- a/lilv/lilv.h +++ b/lilv/lilv.h @@ -712,17 +712,6 @@ lilv_plugin_get_value(const LilvPlugin* p, const LilvValue* predicate); /** - Get a value associated with the plugin in a plugin's data files. - This function is identical to lilv_plugin_get_value, but takes a QName - string parameter for a predicate instead of an LilvValue, which may be - more convenient. -*/ -LILV_API -LilvValues* -lilv_plugin_get_value_by_qname(const LilvPlugin* p, - const char* predicate); - -/** Get a value associated with some subject in a plugin's data files. @a predicate must be either a URI or a QName. @@ -926,15 +915,6 @@ lilv_port_get_value(const LilvPlugin* plugin, const LilvValue* predicate); /** - Port analog of lilv_plugin_get_value_by_qname. -*/ -LILV_API -LilvValues* -lilv_port_get_value_by_qname(const LilvPlugin* plugin, - const LilvPort* port, - const char* predicate); - -/** Return the LV2 port properties of a port. */ LILV_API diff --git a/lilv/lilvmm.hpp b/lilv/lilvmm.hpp index 3c2189a..b2fe293 100644 --- a/lilv/lilvmm.hpp +++ b/lilv/lilvmm.hpp @@ -168,7 +168,6 @@ struct Port { inline RT name (T1 a1) { return lilv_port_ ## name (parent, me, a1); } LILV_PORT_WRAP1(LilvValues*, get_value, LilvValue*, predicate); - LILV_PORT_WRAP1(LilvValues*, get_value_by_qname, const char*, predicate); LILV_PORT_WRAP0(LilvValues*, get_properties) LILV_PORT_WRAP1(bool, has_property, LilvValue*, property_uri); LILV_PORT_WRAP1(bool, supports_event, LilvValue*, event_uri); @@ -196,7 +195,6 @@ struct Plugin { LILV_WRAP0(Value, plugin, get_name); LILV_WRAP0(PluginClass, plugin, get_class); LILV_WRAP1(Values, plugin, get_value, Value, pred); - LILV_WRAP1(Values, plugin, get_value_by_qname, const char*, predicate); LILV_WRAP2(Values, plugin, get_value_for_subject, Value, subject, Value, predicate); LILV_WRAP1(bool, plugin, has_feature, Value, feature_uri); |