diff options
Diffstat (limited to 'src/LibC++/filesystem.h')
| -rw-r--r-- | src/LibC++/filesystem.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/LibC++/filesystem.h b/src/LibC++/filesystem.h new file mode 100644 index 0000000..807ab0d --- /dev/null +++ b/src/LibC++/filesystem.h @@ -0,0 +1,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__
\ No newline at end of file |
