Visibility hidden by default
[babeltrace.git] / src / plugins / ctf / fs-src / query.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * BabelTrace - CTF on File System Component
7 */
8
9 #ifndef BABELTRACE_PLUGIN_CTF_FS_QUERY_H
10 #define BABELTRACE_PLUGIN_CTF_FS_QUERY_H
11
12 #include "common/macros.h"
13 #include <babeltrace2/babeltrace.h>
14
15 bt_component_class_query_method_status
16 metadata_info_query(bt_self_component_class_source *comp_class, const bt_value *params,
17 bt_logging_level log_level, const bt_value **result);
18
19 bt_component_class_query_method_status trace_infos_query(bt_self_component_class_source *comp_class,
20 const bt_value *params,
21 bt_logging_level log_level,
22 const bt_value **result);
23
24 bt_component_class_query_method_status
25 support_info_query(bt_self_component_class_source *comp_class, const bt_value *params,
26 bt_logging_level log_level, const bt_value **result);
27
28 #endif /* BABELTRACE_PLUGIN_CTF_FS_QUERY_H */
This page took 0.030302 seconds and 4 git commands to generate.