summaryrefslogtreecommitdiffstats
path: root/slv2/pluginclass.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-12 00:36:14 +0000
committerDavid Robillard <d@drobilla.net>2011-02-12 00:36:14 +0000
commite07eb06e7d29cc2ddee94e24571118d09c624e1e (patch)
tree744f4e71db112d8eeb7b492ab38d41cbe8a9c6e3 /slv2/pluginclass.h
parent0b6bdcce6cea21909553a334629a5b3d004bd553 (diff)
downloadlilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.tar.gz
lilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.tar.bz2
lilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.zip
Tidy up documentation, remove cruft.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2924 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginclass.h')
-rw-r--r--slv2/pluginclass.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/slv2/pluginclass.h b/slv2/pluginclass.h
index 9adf551..f059522 100644
--- a/slv2/pluginclass.h
+++ b/slv2/pluginclass.h
@@ -25,45 +25,33 @@ extern "C" {
#include "slv2/types.h"
-/** \addtogroup slv2_data
+/** @addtogroup slv2_data
* @{
*/
/** Get the URI of this class' superclass.
- *
- * Returned value is owned by \a plugin_class and must not be freed by caller.
+ * Returned value is owned by @a plugin_class and must not be freed by caller.
* Returned value may be NULL, if class has no parent.
- *
- * Time = O(1)
*/
SLV2_API
SLV2Value
slv2_plugin_class_get_parent_uri(SLV2PluginClass plugin_class);
/** Get the URI of this plugin class.
- *
- * Returned value is owned by \a plugin_class and must not be freed by caller.
- *
- * Time = O(1)
+ * Returned value is owned by @a plugin_class and must not be freed by caller.
*/
SLV2_API
SLV2Value
slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
/** Get the label of this plugin class, ie "Oscillators".
- *
- * Returned value is owned by \a plugin_class and must not be freed by caller.
- *
- * Time = O(1)
+ * Returned value is owned by @a plugin_class and must not be freed by caller.
*/
SLV2_API
SLV2Value slv2_plugin_class_get_label(SLV2PluginClass plugin_class);
/** Get the subclasses of this plugin class.
- *
* Returned value must be freed by caller with slv2_plugin_classes_free.
- *
- * Time = O(nclasses)
*/
SLV2_API
SLV2PluginClasses