summaryrefslogtreecommitdiffstats
path: root/slv2/plugin.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-04 01:49:51 +0000
committerDavid Robillard <d@drobilla.net>2011-02-04 01:49:51 +0000
commit4f3316c9c7842c4c745291b6699afaade6b8531d (patch)
treec9424da990c35a86b8f77d1352b2ca7a5c264a06 /slv2/plugin.h
parentcfa70a49ec316be6ab83769161a5e02b97c84f65 (diff)
downloadlilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.gz
lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.bz2
lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.zip
Remove repeated blank lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2897 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/plugin.h')
-rw-r--r--slv2/plugin.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h
index bd457f0..e94b4f3 100644
--- a/slv2/plugin.h
+++ b/slv2/plugin.h
@@ -41,7 +41,6 @@ extern "C" {
* @{
*/
-
/** Check if this plugin is valid.
*
* This is used by plugin lists to avoid loading plugins that are not valid
@@ -60,7 +59,6 @@ SLV2_API
bool
slv2_plugin_verify(SLV2Plugin plugin);
-
/** Get the URI of \a plugin.
*
* Any serialization that refers to plugins should refer to them by this.
@@ -81,7 +79,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_uri(SLV2Plugin plugin);
-
/** Get the (resolvable) URI of the plugins "main" bundle.
*
* This returns the URI of the bundle where the plugin itself was found.
@@ -101,7 +98,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_bundle_uri(SLV2Plugin plugin);
-
/** Get the (resolvable) URIs of the RDF data files that define a plugin.
*
* Typical hosts should not need to use this function.
@@ -118,7 +114,6 @@ SLV2_API
SLV2Values
slv2_plugin_get_data_uris(SLV2Plugin plugin);
-
/** Get the (resolvable) URI of the shared library for \a plugin.
*
* Note this always returns a fully qualified URI. If you want a local
@@ -132,7 +127,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_library_uri(SLV2Plugin plugin);
-
/** Get the name of \a plugin.
*
* This returns the name (doap:name) of the plugin. The name may be
@@ -146,14 +140,12 @@ SLV2_API
SLV2Value
slv2_plugin_get_name(SLV2Plugin plugin);
-
/** Get the class this plugin belongs to (ie Filters).
*/
SLV2_API
SLV2PluginClass
slv2_plugin_get_class(SLV2Plugin plugin);
-
/** Get a value associated with the plugin in a plugin's data files.
*
* Returns the ?object of all triples found of the form:
@@ -175,7 +167,6 @@ SLV2Values
slv2_plugin_get_value(SLV2Plugin p,
SLV2Value predicate);
-
/** Get a value associated with the plugin in a plugin's data files.
*
* This function is identical to slv2_plugin_get_value, but takes a QName
@@ -187,7 +178,6 @@ SLV2Values
slv2_plugin_get_value_by_qname(SLV2Plugin p,
const char* predicate);
-
/** Get a translated value associated with the plugin in a plugin's data files.
*
* This function is identical to slv2_plugin_get_value, but takes a QName
@@ -200,7 +190,6 @@ SLV2Values
slv2_plugin_get_value_by_qname_i18n(SLV2Plugin p,
const char* predicate);
-
/** Get a value associated with some subject in a plugin's data files.
*
* Returns the ?object of all triples found of the form:
@@ -226,7 +215,6 @@ slv2_plugin_get_value_for_subject(SLV2Plugin p,
SLV2Value subject_uri,
SLV2Value predicate_uri);
-
/** Return whether a feature is supported by a plugin.
*
* This will return true if the feature is an optional or required feature
@@ -239,7 +227,6 @@ bool
slv2_plugin_has_feature(SLV2Plugin p,
SLV2Value feature_uri);
-
/** Get the LV2 Features supported (required or optionally) by a plugin.
*
* A feature is "supported" by a plugin if it is required OR optional.
@@ -256,7 +243,6 @@ SLV2_API
SLV2Values
slv2_plugin_get_supported_features(SLV2Plugin p);
-
/** Get the LV2 Features required by a plugin.
*
* If a feature is required by a plugin, hosts MUST NOT use the plugin if they do not
@@ -274,7 +260,6 @@ SLV2_API
SLV2Values
slv2_plugin_get_required_features(SLV2Plugin p);
-
/** Get the LV2 Features optionally supported by a plugin.
*
* Hosts MAY ignore optional plugin features for whatever reasons. Plugins
@@ -289,7 +274,6 @@ SLV2_API
SLV2Values
slv2_plugin_get_optional_features(SLV2Plugin p);
-
/** Get the number of ports on this plugin.
*
* Time = O(1)
@@ -298,7 +282,6 @@ SLV2_API
uint32_t
slv2_plugin_get_num_ports(SLV2Plugin p);
-
/** Get the port ranges (minimum, maximum and default values) for all ports.
*
* \a min_values, \a max_values and \a def_values must either point to an array
@@ -344,7 +327,6 @@ SLV2_API
bool
slv2_plugin_has_latency(SLV2Plugin p);
-
/** Return the index of the plugin's latency port.
*
* It is a fatal error to call this on a plugin without checking if the port
@@ -360,7 +342,6 @@ SLV2_API
uint32_t
slv2_plugin_get_latency_port_index(SLV2Plugin p);
-
/** Query a plugin for a single variable (i.e. SELECT a single ?value).
*
* \param plugin The plugin to query.
@@ -377,7 +358,6 @@ slv2_plugin_query_variable(SLV2Plugin plugin,
const char* sparql_str,
unsigned variable);
-
/** Query a plugin and return the number of results found.
*
* Note that this function will work, but is mostly meaningless for queries
@@ -393,7 +373,6 @@ unsigned
slv2_plugin_query_count(SLV2Plugin plugin,
const char* sparql_str);
-
/** Get a port on this plugin by \a index.
*
* To perform multiple calls on a port, the returned value should
@@ -406,7 +385,6 @@ SLV2Port
slv2_plugin_get_port_by_index(SLV2Plugin plugin,
uint32_t index);
-
/** Get a port on this plugin by \a symbol.
*
* To perform multiple calls on a port, the returned value should
@@ -421,7 +399,6 @@ SLV2Port
slv2_plugin_get_port_by_symbol(SLV2Plugin plugin,
SLV2Value symbol);
-
/** Get a list of all UIs available for this plugin.
*
* Note this returns the URI of the UI, and not the path/URI to its shared
@@ -438,7 +415,6 @@ SLV2_API
SLV2UIs
slv2_plugin_get_uis(SLV2Plugin plugin);
-
/** Get the full name of the plugin's author.
*
* Returns NULL if author name is not present.
@@ -450,7 +426,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_author_name(SLV2Plugin plugin);
-
/** Get the email address of the plugin's author.
*
* Returns NULL if author email address is not present.
@@ -462,7 +437,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_author_email(SLV2Plugin plugin);
-
/** Get the email address of the plugin's author.
*
* Returns NULL if author homepage is not present.
@@ -474,7 +448,6 @@ SLV2_API
SLV2Value
slv2_plugin_get_author_homepage(SLV2Plugin plugin);
-
/** @} */
#ifdef __cplusplus