Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:14

0001 // Copyright (c) 2021 Klemens D. Morgenstern
0002 //
0003 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0004 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
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 //BOOST_PROCESS_FILESYSTEM_HPP