diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 15:31:17 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 15:32:32 +0100 |
| commit | 97868f338a02ad5acd8049f0ba0474d330e11877 (patch) | |
| tree | 34d7642918ea47c899ea2a009384576f41dbb527 /include/CoreRuntimeKit/C++/filesystem | |
| parent | 41458b7253c524db10088657c930d300fc1b09ca (diff) | |
feat: More runtime improvements for Nectar and NeKernel C++ Runtime.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CoreRuntimeKit/C++/filesystem')
| -rw-r--r-- | include/CoreRuntimeKit/C++/filesystem | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/CoreRuntimeKit/C++/filesystem b/include/CoreRuntimeKit/C++/filesystem new file mode 100644 index 0000000..46d1310 --- /dev/null +++ b/include/CoreRuntimeKit/C++/filesystem @@ -0,0 +1,19 @@ +/* ======================================== + + Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. + +======================================== */ + +#ifndef __NECTAR_FS_H__ +#define __NECTAR_FS_H__ + +#include <defines> + +namespace std { +class path; +class filesystem_error; +class directory_entry; +class directory_iterator; +} // namespace std + +#endif // __NECTAR_FS_H__ |
