2 * SPDX-License-Identifier: MIT
4 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
7 #ifndef BABELTRACE_PLUGINS_UTILS_DUMMY_H
8 #define BABELTRACE_PLUGINS_UTILS_DUMMY_H
11 #include <babeltrace2/babeltrace.h>
12 #include "common/macros.h"
19 bt_message_iterator
*msg_iter
;
22 bt_component_class_initialize_method_status
dummy_init(
23 bt_self_component_sink
*component
,
24 bt_self_component_sink_configuration
*config
,
25 const bt_value
*params
, void *init_method_data
);
27 void dummy_finalize(bt_self_component_sink
*component
);
29 bt_component_class_sink_graph_is_configured_method_status
dummy_graph_is_configured(
30 bt_self_component_sink
*comp
);
32 bt_component_class_sink_consume_method_status
dummy_consume(
33 bt_self_component_sink
*component
);
39 #endif /* BABELTRACE_PLUGINS_UTILS_DUMMY_H */