File indexing completed on 2025-01-18 09:30:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
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 }
0032 }
0033
0034 #include <boost/filesystem/detail/footer.hpp>
0035
0036 #endif
0037
0038 #endif