Make API CTF-agnostic
[babeltrace.git] / plugins / ctf / common / metadata / ctf-meta-visitors.h
CommitLineData
44c440bc
PP
1#ifndef _CTF_META_VISITORS_H
2#define _CTF_META_VISITORS_H
3
4/*
5 * Copyright 2018 - Philippe Proulx <pproulx@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 */
17
18#include <babeltrace/babeltrace.h>
19#include <babeltrace/babeltrace-internal.h>
20
21#include "ctf-meta.h"
22
23BT_HIDDEN
24int ctf_trace_class_resolve_field_types(struct ctf_trace_class *tc);
25
26BT_HIDDEN
27int ctf_trace_class_translate(struct bt_trace *ir_trace,
28 struct ctf_trace_class *tc);
29
30BT_HIDDEN
31int ctf_trace_class_update_default_clock_classes(
32 struct ctf_trace_class *ctf_tc);
33
34BT_HIDDEN
35int ctf_trace_class_update_in_ir(struct ctf_trace_class *ctf_tc);
36
37BT_HIDDEN
38int ctf_trace_class_update_meanings(struct ctf_trace_class *ctf_tc);
39
40BT_HIDDEN
41int ctf_trace_class_update_text_array_sequence(struct ctf_trace_class *ctf_tc);
42
43BT_HIDDEN
44int ctf_trace_class_update_value_storing_indexes(struct ctf_trace_class *ctf_tc);
45
46BT_HIDDEN
47int ctf_trace_class_validate(struct ctf_trace_class *ctf_tc);
48
49#endif /* _CTF_META_VISITORS_H */
This page took 0.025886 seconds and 4 git commands to generate.