Create sink plugins
[babeltrace.git] / include / babeltrace / plugin / component-factory-internal.h
index 0508cd860728e51374c47cc4ba1cfe041b068885..d2f14478d9672d5907342f9938205549dcf8df04 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 *component_classes;
 };
 
 #endif /* BABELTRACE_PLUGIN_COMPONENT_FACTORY_INTERNAL_H */
This page took 0.023897 seconds and 4 git commands to generate.