cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / lib / graph / component-sink.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 */
7
8 #ifndef BABELTRACE_GRAPH_COMPONENT_SINK_INTERNAL_H
9 #define BABELTRACE_GRAPH_COMPONENT_SINK_INTERNAL_H
10
11 #include <stdbool.h>
12
13 #include "compat/compiler.h"
14 #include <babeltrace2/graph/component.h>
15
16 #include "component.h"
17
18 struct bt_component_sink {
19 struct bt_component parent;
20 bool graph_is_configured_method_called;
21 };
22
23 struct bt_component *bt_component_sink_create(void);
24
25 #endif /* BABELTRACE_GRAPH_COMPONENT_SINK_INTERNAL_H */
This page took 0.031167 seconds and 5 git commands to generate.