diff options
author | David Robillard <d@drobilla.net> | 2011-03-01 17:25:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-01 17:25:26 +0000 |
commit | dfee84e5006aa5ff131c1ebc0b6cce50c1276b8f (patch) | |
tree | 788d0112bdc4f7c2f962aeeed19d502d6bedec15 /core.lv2 | |
parent | dcc2cf3b1754304a5bb269b6dda9b06c89708e42 (diff) | |
download | lv2-dfee84e5006aa5ff131c1ebc0b6cce50c1276b8f.tar.xz |
Add lv2:binary (previously used, but undefined).
Diffstat (limited to 'core.lv2')
-rw-r--r-- | core.lv2/lv2.ttl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index 68c8891..e3f16da 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -345,6 +345,19 @@ used in a similar way to represent a 'minor version', and NOT as a major version to distinguish incompatible objects (use the URI for that). """ . +lv2:binary a rdf:Property ; + rdfs:domain lv2:Resource ; + rdfs:range rdfs:Resource ; + rdfs:label "binary" ; + rdfs:comment """ +The binary of an LV2 resource. The value of this property must be a URI to +a shared library object. The actual type of this object is system specific. + +This is a required property of an lv2:Plugin. The lv2:binary of an lv2:Plugin +is the shared object containing the lv2_descriptor function which can be used +to access the descriptor for that plugin. +""" . + #################################### ## Documentation ## |