aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/event/event.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 18:59:32 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 18:14:00 -0400
commit1eccbe4355685b322194df72b5de2382d5290b3b (patch)
tree0677b5c2f577a5024c351a164527f4bdd91a639b /lv2/event/event.ttl
parentd4a970f6962dda28133290194832b726b566ddab (diff)
downloadlv2-1eccbe4355685b322194df72b5de2382d5290b3b.tar.xz
Rearrange source tree to be directly usable by dependants
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.
Diffstat (limited to 'lv2/event/event.ttl')
-rw-r--r--lv2/event/event.ttl87
1 files changed, 0 insertions, 87 deletions
diff --git a/lv2/event/event.ttl b/lv2/event/event.ttl
deleted file mode 100644
index 119e606..0000000
--- a/lv2/event/event.ttl
+++ /dev/null
@@ -1,87 +0,0 @@
-@prefix ev: <http://lv2plug.in/ns/ext/event#> .
-@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-
-<http://lv2plug.in/ns/ext/event>
- a owl:Ontology ;
- owl:deprecated true ;
- rdfs:label "LV2 Event" ;
- rdfs:comment "A port-based real-time generic event interface." ;
- rdfs:seeAlso <event.h> ,
- <event-helpers.h> ,
- <event.meta.ttl> ;
- owl:imports <http://lv2plug.in/ns/lv2core> .
-
-ev:EventPort
- a rdfs:Class ;
- rdfs:label "Event Port" ;
- rdfs:subClassOf lv2:Port ;
- rdfs:comment "An LV2 event port." .
-
-ev:Event
- a rdfs:Class ;
- rdfs:label "Event" ;
- rdfs:comment "A single generic time-stamped event." .
-
-ev:TimeStamp
- a rdfs:Class ;
- rdfs:label "Event Time Stamp" ;
- rdfs:comment "The time stamp of an Event." .
-
-ev:FrameStamp
- a rdfs:Class ;
- rdfs:subClassOf ev:TimeStamp ;
- rdfs:label "Audio Frame Time Stamp" ;
- rdfs:comment "The default time stamp unit for an event." .
-
-ev:generic
- a lv2:PortProperty ;
- rdfs:label "generic event port" ;
- rdfs:comment "Port works with generic events." .
-
-ev:supportsEvent
- a rdf:Property ,
- owl:ObjectProperty ;
- rdfs:domain ev:EventPort ;
- rdfs:range rdfs:Class ;
- rdfs:label "supports event type" ;
- rdfs:comment "An event type supported by this port." .
-
-ev:inheritsEvent
- a rdf:Property ,
- owl:ObjectProperty ;
- rdfs:domain ev:EventPort ,
- lv2:OutputPort ;
- rdfs:range lv2:Port ;
- rdfs:label "inherits event type" ;
- rdfs:comment "Output port inherits event types from an input port." .
-
-ev:supportsTimeStamp
- a rdf:Property ,
- owl:ObjectProperty ;
- rdfs:domain ev:EventPort ,
- lv2:InputPort ;
- rdfs:range rdfs:Class ;
- rdfs:label "supports time stamp type" ;
- rdfs:comment "A time stamp type supported by this input port." .
-
-ev:generatesTimeStamp
- a rdf:Property ,
- owl:ObjectProperty ;
- rdfs:domain ev:EventPort ,
- lv2:OutputPort ;
- rdfs:range rdfs:Class ;
- rdfs:label "generates time stamp type" ;
- rdfs:comment "A time stamp type generated by this input port." .
-
-ev:inheritsTimeStamp
- a rdf:Property ,
- owl:ObjectProperty ;
- rdfs:domain ev:EventPort ,
- lv2:OutputPort ;
- rdfs:range lv2:Port ;
- rdfs:label "inherits time stamp type" ;
- rdfs:comment "Output port inherits time stamp types from an input port." .
-