1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BOOST_FILESYSTEM_PATH_TRAITS_HPP
- #define BOOST_FILESYSTEM_PATH_TRAITS_HPP
- #include <boost/filesystem/config.hpp>
- #if !defined(BOOST_FILESYSTEM_DEPRECATED) && !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED)
- #include <boost/config/header_deprecated.hpp>
- BOOST_HEADER_DEPRECATED("your own implementation")
- #endif
- #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED)
- #include <boost/filesystem/detail/path_traits.hpp>
- #include <boost/filesystem/detail/header.hpp> // must be the last #include
- namespace boost {
- namespace filesystem {
- namespace path_traits = boost::filesystem::detail::path_traits;
- }
- }
- #include <boost/filesystem/detail/footer.hpp>
- #endif
- #endif
|