Refactor the component class and component API
[babeltrace.git] / lib / component / iterator.c
index 188095cf856c46b3710ddbc1b122f9931d4cc425..98c4f3554a053ff3996eaebd379f9543a015bbe2 100644 (file)
@@ -53,17 +53,17 @@ BT_HIDDEN
 struct bt_notification_iterator *bt_notification_iterator_create(
                struct bt_component *component)
 {
-       enum bt_component_type type;
+       enum bt_component_class_type type;
        struct bt_notification_iterator *iterator = NULL;
 
        if (!component) {
                goto end;
        }
 
-       type = bt_component_get_type(component);
+       type = bt_component_get_class_type(component);
        switch (type) {
-       case BT_COMPONENT_TYPE_SOURCE:
-       case BT_COMPONENT_TYPE_FILTER:
+       case BT_COMPONENT_CLASS_TYPE_SOURCE:
+       case BT_COMPONENT_CLASS_TYPE_FILTER:
                break;
        default:
                goto end;
This page took 0.02467 seconds and 4 git commands to generate.