File indexing completed on 2025-04-10 08:42:59
0001
0002
0003
0004
0005 #ifndef BOOST_PROCESS_FILESYSTEM_HPP
0006 #define BOOST_PROCESS_FILESYSTEM_HPP
0007
0008 #include <boost/process/v1/detail/config.hpp>
0009
0010 #ifdef BOOST_PROCESS_USE_STD_FS
0011 #include <filesystem>
0012 #else
0013 #include <boost/filesystem/path.hpp>
0014 #include <boost/filesystem/operations.hpp>
0015 #endif
0016
0017 namespace boost
0018 {
0019 namespace process
0020 {
0021 BOOST_PROCESS_V1_INLINE namespace v1
0022 {
0023
0024 #ifdef BOOST_PROCESS_USE_STD_FS
0025 namespace filesystem = std::filesystem;
0026 #else
0027 namespace filesystem = boost::filesystem;
0028 #endif
0029
0030 }
0031 }
0032 }
0033
0034 #endif