/* ======================================== Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license. ======================================== */ #ifndef __NECTI_FS_H__ #define __NECTI_FS_H__ #include /// @brief Filesystem module for LibC++ namespace std { class path; class filesystem_error; class directory_entry; class directory_iterator; } // namespace std #endif // __NECTI_FS_H__