Visibility hidden by default
[babeltrace.git] / src / plugins / utils / dummy / dummy.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef BABELTRACE_PLUGINS_UTILS_DUMMY_H
8 #define BABELTRACE_PLUGINS_UTILS_DUMMY_H
9
10 #include <glib.h>
11 #include <babeltrace2/babeltrace.h>
12 #include "common/macros.h"
13
14 struct dummy {
15 bt_message_iterator *msg_iter;
16 };
17
18 bt_component_class_initialize_method_status dummy_init(
19 bt_self_component_sink *component,
20 bt_self_component_sink_configuration *config,
21 const bt_value *params, void *init_method_data);
22
23 void dummy_finalize(bt_self_component_sink *component);
24
25 bt_component_class_sink_graph_is_configured_method_status dummy_graph_is_configured(
26 bt_self_component_sink *comp);
27
28 bt_component_class_sink_consume_method_status dummy_consume(
29 bt_self_component_sink *component);
30
31 #endif /* BABELTRACE_PLUGINS_UTILS_DUMMY_H */
This page took 0.030197 seconds and 4 git commands to generate.