bfeebad66d06b4eef5240d45d4c26dea0cfe329f
[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_HIDDEN
16 bt_component_class_query_method_status metadata_info_query(
17 bt_self_component_class_source *comp_class,
18 const bt_value *params,
19 bt_logging_level log_level, const bt_value **result);
20
21 BT_HIDDEN
22 bt_component_class_query_method_status trace_infos_query(
23 bt_self_component_class_source *comp_class,
24 const bt_value *params, bt_logging_level log_level,
25 const bt_value **result);
26
27 BT_HIDDEN
28 bt_component_class_query_method_status support_info_query(
29 bt_self_component_class_source *comp_class,
30 const bt_value *params, bt_logging_level log_level,
31 const bt_value **result);
32
33 #endif /* BABELTRACE_PLUGIN_CTF_FS_QUERY_H */
This page took 0.029383 seconds and 3 git commands to generate.