summaryrefslogtreecommitdiffstats
path: root/slv2/collections.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/collections.h')
-rw-r--r--slv2/collections.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/slv2/collections.h b/slv2/collections.h
index 44ef6c7..0425655 100644
--- a/slv2/collections.h
+++ b/slv2/collections.h
@@ -34,7 +34,6 @@ extern "C" {
* @{
*/
-
/* **** GENERIC COLLECTION FUNCTIONS **** */
#define SLV2_COLLECTION(CollType, ElemType, prefix) \
@@ -78,8 +77,6 @@ SLV2_COLLECTION(SLV2ScalePoints, SLV2ScalePoint, slv2_scale_points)
SLV2_COLLECTION(SLV2Values, SLV2Value, slv2_values)
SLV2_COLLECTION(SLV2UIs, SLV2UI, slv2_uis)
-
-
/* **** PLUGINS **** */
/** Free a plugin collection.
@@ -93,7 +90,6 @@ void
slv2_plugins_free(SLV2World world,
SLV2Plugins plugins);
-
/** Get the number of plugins in the collection.
* Time = O(1)
*/
@@ -101,7 +97,6 @@ SLV2_API
unsigned
slv2_plugins_size(SLV2Plugins plugins);
-
/** Get a plugin from the collection by URI.
*
* Return value is shared (stored in \a plugins) and must not be freed or
@@ -116,7 +111,6 @@ SLV2Plugin
slv2_plugins_get_by_uri(SLV2Plugins plugins,
SLV2Value uri);
-
/** Get a plugin from the plugins by index.
*
* \a index has no significance other than as an index into this plugins.
@@ -133,8 +127,6 @@ SLV2Plugin
slv2_plugins_get_at(SLV2Plugins plugins,
unsigned index);
-
-
/* **** PLUGIN CLASSES **** */
/** Get a plugin class from the collection by URI.
@@ -151,8 +143,6 @@ SLV2PluginClass
slv2_plugin_classes_get_by_uri(SLV2PluginClasses classes,
SLV2Value uri);
-
-
/* **** SCALE POINTS **** */
/** Allocate a new, empty SLV2ScalePoints
@@ -161,8 +151,6 @@ SLV2_API
SLV2ScalePoints
slv2_scale_points_new();
-
-
/* **** VALUES **** */
/** Allocate a new, empty SLV2Values
@@ -171,7 +159,6 @@ SLV2_API
SLV2Values
slv2_values_new();
-
/** Return whether \a values contains \a value.
*
* Time = O(n)
@@ -180,8 +167,6 @@ SLV2_API
bool
slv2_values_contains(SLV2Values values, SLV2Value value);
-
-
/* **** PLUGIN UIS **** */
/** Get a plugin from the list by URI.
@@ -198,7 +183,6 @@ SLV2UI
slv2_uis_get_by_uri(SLV2UIs list,
SLV2Value uri);
-
/** @} */
#ifdef __cplusplus