Sort includes in C++ files
[babeltrace.git] / src / plugins / ctf / fs-src / file.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2016 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef CTF_FS_FILE_H
8 #define CTF_FS_FILE_H
9
10 #include <glib.h>
11 #include <stdio.h>
12
13 #include "common/macros.h"
14
15 #include "fs.hpp"
16
17 void ctf_fs_file_destroy(struct ctf_fs_file *file);
18
19 struct ctf_fs_file *ctf_fs_file_create(bt_logging_level log_level, bt_self_component *self_comp);
20
21 int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode);
22
23 #endif /* CTF_FS_FILE_H */
This page took 0.030356 seconds and 4 git commands to generate.