File indexing completed on 2025-01-18 09:50:14
0001
0002
0003
0004
0005 #ifndef BOOST_PROCESS_FILESYSTEM_HPP
0006 #define BOOST_PROCESS_FILESYSTEM_HPP
0007
0008 #ifdef BOOST_PROCESS_USE_STD_FS
0009 #include <filesystem>
0010 #else
0011 #include <boost/filesystem/path.hpp>
0012 #include <boost/filesystem/operations.hpp>
0013 #endif
0014
0015 namespace boost
0016 {
0017 namespace process
0018 {
0019 #ifdef BOOST_PROCESS_USE_STD_FS
0020 namespace filesystem = std::filesystem;
0021 #else
0022 namespace filesystem = boost::filesystem;
0023 #endif
0024
0025 }
0026 }
0027
0028 #endif