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