Adapt plugin system to use unified reference counting
[babeltrace.git] / include / babeltrace / plugin / component-factory-internal.h
index 0508cd860728e51374c47cc4ba1cfe041b068885..3ee24f8510d80f1f81b164b59d524ba1e61e6f9f 100644 (file)
  */
 
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/plugin/component-internal.h>
+#include <babeltrace/object-internal.h>
+#include <babeltrace/plugin/component-factory.h>
+#include <babeltrace/plugin/component.h>
+#include <babeltrace/plugin/component-class-internal.h>
 #include <babeltrace/plugin/plugin-system.h>
+#include <babeltrace/plugin/plugin.h>
+#include <glib.h>
 
 struct bt_component_factory {
-       int a;
+       struct bt_object base;
+       /** Array of pointers to struct bt_plugin */
+       GPtrArray *plugins;
+       /** Array of pointers to struct bt_component_class */
+       GPtrArray *components;
 };
 
 #endif /* BABELTRACE_PLUGIN_COMPONENT_FACTORY_INTERNAL_H */
This page took 0.022767 seconds and 4 git commands to generate.