Move to kernel style SPDX license identifiers
[babeltrace.git] / src / lib / graph / component-filter.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 */
7
8 #ifndef BABELTRACE_GRAPH_COMPONENT_FILTER_INTERNAL_H
9 #define BABELTRACE_GRAPH_COMPONENT_FILTER_INTERNAL_H
10
11 #include "common/macros.h"
12 #include <babeltrace2/graph/component.h>
13
14 #include "component-class.h"
15 #include "component.h"
16
17 struct bt_component_filter {
18 struct bt_component parent;
19 };
20
21 BT_HIDDEN
22 struct bt_component *bt_component_filter_create(
23 const struct bt_component_class *class);
24
25 BT_HIDDEN
26 void bt_component_filter_destroy(struct bt_component *component);
27
28 #endif /* BABELTRACE_GRAPH_COMPONENT_FILTER_INTERNAL_H */
This page took 0.029935 seconds and 4 git commands to generate.