File indexing completed on 2025-01-30 10:12:52
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include <nlohmann/detail/macro_scope.hpp>
0012
0013 #if JSON_HAS_EXPERIMENTAL_FILESYSTEM
0014 #include <experimental/filesystem>
0015 NLOHMANN_JSON_NAMESPACE_BEGIN
0016 namespace detail
0017 {
0018 namespace std_fs = std::experimental::filesystem;
0019 }
0020 NLOHMANN_JSON_NAMESPACE_END
0021 #elif JSON_HAS_FILESYSTEM
0022 #include <filesystem>
0023 NLOHMANN_JSON_NAMESPACE_BEGIN
0024 namespace detail
0025 {
0026 namespace std_fs = std::filesystem;
0027 }
0028 NLOHMANN_JSON_NAMESPACE_END
0029 #endif