Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:52

0001 //  filesystem path_traits.hpp  --------------------------------------------------------//
0002 
0003 //  Copyright Beman Dawes 2009
0004 //  Copyright Andrey Semashev 2022
0005 
0006 //  Distributed under the Boost Software License, Version 1.0.
0007 //  See http://www.boost.org/LICENSE_1_0.txt
0008 
0009 //  Library home page: http://www.boost.org/libs/filesystem
0010 
0011 #ifndef BOOST_FILESYSTEM_PATH_TRAITS_HPP
0012 #define BOOST_FILESYSTEM_PATH_TRAITS_HPP
0013 
0014 #include <boost/filesystem/config.hpp>
0015 
0016 #if !defined(BOOST_FILESYSTEM_DEPRECATED) && !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED)
0017 #include <boost/config/header_deprecated.hpp>
0018 BOOST_HEADER_DEPRECATED("your own implementation")
0019 #endif
0020 
0021 #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED)
0022 
0023 #include <boost/filesystem/detail/path_traits.hpp>
0024 #include <boost/filesystem/detail/header.hpp> // must be the last #include
0025 
0026 namespace boost {
0027 namespace filesystem {
0028 
0029 namespace path_traits = boost::filesystem::detail::path_traits;
0030 
0031 } // namespace filesystem
0032 } // namespace boost
0033 
0034 #include <boost/filesystem/detail/footer.hpp>
0035 
0036 #endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED)
0037 
0038 #endif // BOOST_FILESYSTEM_PATH_TRAITS_HPP