Update notification iterator's "init" function signature
[babeltrace.git] / include / babeltrace / component / component-class-internal.h
index 3994edbdea6541bab3d9c00f55bc4f957fcd7880..1cafef640b27b2e5a23cb537bb1129864b063ea2 100644 (file)
@@ -56,9 +56,10 @@ struct bt_component_class {
        GString *help;
        struct {
                bt_component_class_init_method init;
-               bt_component_class_destroy_method destroy;
+               bt_component_class_finalize_method finalize;
                bt_component_class_query_method query;
-               bt_component_class_new_connection_method new_connection_method;
+               bt_component_class_accept_port_connection_method accept_port_connection;
+               bt_component_class_port_disconnected_method port_disconnected;
        } methods;
        /* Array of struct bt_component_class_destroy_listener */
        GArray *destroy_listeners;
@@ -67,8 +68,7 @@ struct bt_component_class {
 
 struct bt_component_class_iterator_methods {
        bt_component_class_notification_iterator_init_method init;
-       bt_component_class_notification_iterator_destroy_method destroy;
-       bt_component_class_notification_iterator_get_method get;
+       bt_component_class_notification_iterator_finalize_method finalize;
        bt_component_class_notification_iterator_next_method next;
        bt_component_class_notification_iterator_seek_time_method seek_time;
 };
This page took 0.023309 seconds and 4 git commands to generate.