List detected component classes
[babeltrace.git] / include / babeltrace / plugin / component-class-internal.h
index 500d7cf3f503f34c51bf2edcbf354d57d1fd920d..f23f256672b0655e97d397e5d5af60783e157f0e 100644 (file)
@@ -36,12 +36,19 @@ struct bt_component_class {
        struct bt_object base;
        enum bt_component_type type;
        GString *name;
+       GString *description;
        struct bt_plugin *plugin;
+       bt_component_init_cb init;
 };
 
+BT_HIDDEN
+int bt_component_class_init(
+               struct bt_component_class *class, enum bt_component_type type,
+               const char *name);
+
 BT_HIDDEN
 struct bt_component_class *bt_component_class_create(
                enum bt_component_type type, const char *name,
-               struct bt_plugin *plugin);
+               const char *description, struct bt_plugin *plugin);
 
 #endif /* BABELTRACE_PLUGIN_COMPONENT_CLASS_INTERNAL_H */
This page took 0.024365 seconds and 4 git commands to generate.