diff options
author | David Robillard <d@drobilla.net> | 2022-07-19 13:46:01 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 00:30:34 -0400 |
commit | 2f44d47ab3d06e106e034e1e66f5afc06ee75f89 (patch) | |
tree | 0b96b675f60506f8c0cf12cfc1358e99ea9b68ab /bundles | |
parent | 48651346a62ab180dfc1bc2069b3d27aeb6d382a (diff) | |
download | ingen-2f44d47ab3d06e106e034e1e66f5afc06ee75f89.tar.gz ingen-2f44d47ab3d06e106e034e1e66f5afc06ee75f89.tar.bz2 ingen-2f44d47ab3d06e106e034e1e66f5afc06ee75f89.zip |
Remove unused ingen:Option class
The idea here was so that options can be enumerated, but at the moment, it just
complicates the schema for no benefit. So, drop it for now, since it can
always be added again later without breaking any data.
Diffstat (limited to 'bundles')
-rw-r--r-- | bundles/ingen.lv2/ingen.ttl | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/bundles/ingen.lv2/ingen.ttl b/bundles/ingen.lv2/ingen.ttl index 9cf5e8c2..4364a2f5 100644 --- a/bundles/ingen.lv2/ingen.ttl +++ b/bundles/ingen.lv2/ingen.ttl @@ -242,16 +242,11 @@ ingen:BundleEnd rdfs:label "Bundle End" ; rdfs:comment "The end of an undo transaction." . -ingen:Option - a rdfs:Class ; - rdfs:subClassOf rdf:Property ; - rdfs:label "Ingen Option" . - ingen:shortSwitch a rdf:Property , owl:DatatypeProperty , owl:FunctionalProperty ; - rdfs:domain ingen:Option ; + rdfs:domain rdf:Property ; rdfs:range xsd:string ; rdfs:label "short switch" ; rdfs:comment "Single character switch for short command line argument." . @@ -260,15 +255,14 @@ ingen:longSwitch a rdf:Property , owl:DatatypeProperty , owl:FunctionalProperty ; - rdfs:domain ingen:Option ; + rdfs:domain rdf:Property ; rdfs:range xsd:string ; rdfs:label "long switch" ; rdfs:comment "Lowercase, hyphenated switch for long command line argument." . ingen:numThreads a rdf:Property , - owl:ObjectProperty , - ingen:Option ; + owl:ObjectProperty ; rdfs:label "number of threads" ; ingen:shortSwitch "p" ; ingen:longSwitch "threads" . |