Blame view

3rdparty/boost_1_81_0/boost/filesystem/path_traits.hpp 1.09 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  //  filesystem path_traits.hpp  --------------------------------------------------------//
  
  //  Copyright Beman Dawes 2009
  //  Copyright Andrey Semashev 2022
  
  //  Distributed under the Boost Software License, Version 1.0.
  //  See http://www.boost.org/LICENSE_1_0.txt
  
  //  Library home page: http://www.boost.org/libs/filesystem
  
  #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;
  
  } // namespace filesystem
  } // namespace boost
  
  #include <boost/filesystem/detail/footer.hpp>
  
  #endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED)
  
  #endif // BOOST_FILESYSTEM_PATH_TRAITS_HPP