blob: 807ab0d8308bcd5ff2e9bd3c861e388c754493e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ========================================
Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license.
======================================== */
#ifndef __NECTI_FS_H__
#define __NECTI_FS_H__
#include <LibC++/defines.h>
/// @brief Filesystem module for LibC++
namespace std {
class path;
class filesystem_error;
class directory_entry;
class directory_iterator;
} // namespace std
#endif // __NECTI_FS_H__
|