include/babeltrace/graph: fix some include guards
[babeltrace.git] / include / babeltrace / graph / component-class-internal.h
index 70eb2ee806dfd2fb6b0245333b9f0a73d9e1a87d..66d920d65b6325250065f619161614432a632a8f 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BABELTRACE_COMPONENT_COMPONENT_CLASS_INTERNAL_H
-#define BABELTRACE_COMPONENT_COMPONENT_CLASS_INTERNAL_H
+#ifndef BABELTRACE_GRAPH_COMPONENT_CLASS_INTERNAL_H
+#define BABELTRACE_GRAPH_COMPONENT_CLASS_INTERNAL_H
 
 /*
  * BabelTrace - Component Class Internal
 #include <babeltrace/graph/component-class-sink.h>
 #include <babeltrace/babeltrace-internal.h>
 #include <babeltrace/object-internal.h>
+#include <babeltrace/list-internal.h>
 #include <babeltrace/types.h>
 #include <glib.h>
 
 struct bt_component_class;
+struct bt_plugin_so_shared_lib_handle;
 
 typedef void (*bt_component_class_destroy_listener_func)(
                struct bt_component_class *class, void *data);
@@ -65,19 +67,20 @@ struct bt_component_class {
        /* Array of struct bt_component_class_destroy_listener */
        GArray *destroy_listeners;
        bt_bool frozen;
+       struct bt_list_head node;
+       struct bt_plugin_so_shared_lib_handle *so_handle;
 };
 
-struct bt_component_class_iterator_methods {
+struct bt_component_class_notification_iterator_methods {
        bt_component_class_notification_iterator_init_method init;
        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;
 };
 
 struct bt_component_class_source {
        struct bt_component_class parent;
        struct {
-               struct bt_component_class_iterator_methods iterator;
+               struct bt_component_class_notification_iterator_methods iterator;
        } methods;
 };
 
@@ -91,7 +94,7 @@ struct bt_component_class_sink {
 struct bt_component_class_filter {
        struct bt_component_class parent;
        struct {
-               struct bt_component_class_iterator_methods iterator;
+               struct bt_component_class_notification_iterator_methods iterator;
        } methods;
 };
 
@@ -116,4 +119,4 @@ const char *bt_component_class_type_string(enum bt_component_class_type type)
        }
 }
 
-#endif /* BABELTRACE_COMPONENT_COMPONENT_CLASS_INTERNAL_H */
+#endif /* BABELTRACE_GRAPH_COMPONENT_CLASS_INTERNAL_H */
This page took 0.026004 seconds and 4 git commands to generate.