Visibility: split graph API into public and private interfaces
[babeltrace.git] / include / babeltrace / component / component-source.h
index 662fe39d8f5f0f43f6c72c79cf29fc6994c916e8..94ebf70715b0eb57282104bb0003c4d7e43f98f4 100644 (file)
@@ -37,20 +37,15 @@ extern "C" {
 struct bt_component;
 struct bt_notification_iterator;
 
-/**
- * Create an iterator on a component instance.
- *
- * @param component    Component instance
- * @returns            Notification iterator instance
- */
-extern
-struct bt_notification_iterator *bt_component_source_create_notification_iterator(
+extern enum bt_component_status bt_component_source_get_output_port_count(
+               struct bt_component *component, uint64_t *count);
+extern struct bt_port *bt_component_source_get_output_port(
+               struct bt_component *component, const char *name);
+extern struct bt_port *bt_component_source_get_output_port_at_index(
+               struct bt_component *component, int index);
+extern struct bt_port *bt_component_source_get_default_output_port(
                struct bt_component *component);
 
-extern
-struct bt_notification_iterator *bt_component_source_create_notification_iterator_with_init_method_data(
-        struct bt_component *component, void *init_method_data);
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.025383 seconds and 4 git commands to generate.