# Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch) # # This is free software: you can redistribute it and/or modify # it under the terms of the Artistic License 2.0 as published by # The Perl Foundation. # # This source is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # Artistic License 2.0 for more details. # # You should have received a copy of the Artistic License 2.0 # along the source as a COPYING file. If not, obtain it from # http://www.perlfoundation.org/artistic_license_2_0. @prefix lv2: . @prefix owl: . @prefix rdfs: . @prefix ui: . @prefix kx: . @prefix sherlock: . # to please sord_validate ui:EoUI a rdfs:Class, owl:Class ; rdfs:subClassOf ui:UI . kx:Widget a rdfs:Class, owl:Class ; rdfs:subClassOf ui:UI . kx:Host a lv2:Feature . # Atom Inspector Plugin sherlock:atom_inspector a lv2:Plugin ; lv2:binary ; @EO_UI_WRAP@ui:ui sherlock:atom_inspector_eo ; @UI_UI_WRAP@ui:ui sherlock:atom_inspector_ui ; @KX_UI_WRAP@ui:ui sherlock:atom_inspector_kx ; @X11_UI_WRAP@ui:ui sherlock:atom_inspector_x11 ; rdfs:seeAlso . sherlock:atom_inspector_eo a ui:EoUI ; ui:binary ; rdfs:seeAlso . sherlock:atom_inspector_ui a ui:UI ; ui:binary ; rdfs:seeAlso . sherlock:atom_inspector_x11 a ui:X11UI ; ui:binary ; rdfs:seeAlso . sherlock:atom_inspector_kx a kx:Widget ; ui:binary ; rdfs:seeAlso .