Rename <babeltrace/component/...> -> <babeltrace/graph/...>
[babeltrace.git] / plugins / utils / dummy / dummy.h
index 2fcf34be97651b809a4e135921f4f7ff4d6aaa31..77e25111c9d573e4afd7c74e3652511f28f1b881 100644 (file)
  * SOFTWARE.
  */
 
-enum bt_component_status dummy_consume(struct bt_component *component);
+#include <glib.h>
+#include <babeltrace/graph/private-component.h>
+#include <babeltrace/graph/private-port.h>
+#include <babeltrace/graph/port.h>
+
+struct dummy {
+       GPtrArray *iterators;
+};
+
+enum bt_component_status dummy_init(struct bt_private_component *component,
+               struct bt_value *params, void *init_method_data);
+void dummy_finalize(struct bt_private_component *component);
+enum bt_component_status dummy_accept_port_connection(
+               struct bt_private_component *component,
+               struct bt_private_port *self_port,
+               struct bt_port *other_port);
+enum bt_component_status dummy_consume(struct bt_private_component *component);
 
 #endif /* BABELTRACE_PLUGINS_UTILS_DUMMY_H */
This page took 0.040078 seconds and 4 git commands to generate.