| Server IP : 172.67.157.124 / Your IP : 216.73.216.213 Web Server : LiteSpeed System : Linux s12482.usc1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64 User : snownico ( 1231) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib64/lv2/state.lv2/ |
Upload File : |
@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#> . @prefix state: <http://lv2plug.in/ns/ext/state#> . <http://lv2plug.in/ns/ext/state> a owl:Ontology ; rdfs:label "LV2 State" ; rdfs:comment "An interface for LV2 plugins to save and restore state." ; rdfs:seeAlso <state.meta.ttl> ; owl:imports <http://lv2plug.in/ns/lv2core> . state:interface a lv2:ExtensionData ; rdfs:label "interface" ; rdfs:comment "A plugin interface for saving and restoring state." . state:State a rdfs:Class ; rdfs:label "State" ; rdfs:comment "LV2 plugin state." . state:loadDefaultState a lv2:Feature ; rdfs:label "load default state" ; rdfs:comment "A feature indicating that the plugin has default state." . state:state a rdf:Property , owl:ObjectProperty ; rdfs:label "state" ; rdfs:range state:State ; rdfs:comment "The state of an LV2 plugin instance." . state:mapPath a lv2:Feature ; rdfs:label "map path" ; rdfs:comment "A feature for mapping between absolute and abstract file paths." . state:makePath a lv2:Feature ; rdfs:label "make path" ; rdfs:comment "A feature for creating new files and directories." . state:threadSafeRestore a lv2:Feature ; rdfs:label "thread-safe restore" ; rdfs:comment "A feature indicating support for thread-safe state restoration." . state:freePath a lv2:Feature ; rdfs:label "free path" ; rdfs:comment "A feature for freeing paths allocated by the host." . state:StateChanged a rdfs:Class ; rdfs:label "State Changed" ; rdfs:comment "A notification that the internal state of the plugin has changed." .