blob: 9667a789804c19bad9ce879b4f19c4df30b515fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
// Official repository: https://github.com/nekernel-org/nectar
#ifndef __NECTAR_FS_H__
#define __NECTAR_FS_H__
#include <chrono>
#include <defines>
namespace std {
class path;
class filesystem_error;
class directory_entry;
class directory_iterator;
} // namespace std
#ifndef __cpp_lib_filesystem
#define __cpp_lib_filesystem 201703L
#endif
#endif // __NECTAR_FS_H__
|