utf8_codecvt_facet.hpp 882 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (c) 2001 Ronald Garcia, Indiana University ([email protected])
  2. // Andrew Lumsdaine, Indiana University ([email protected]).
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
  6. #define BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
  7. #include <boost/filesystem/config.hpp>
  8. #include <boost/filesystem/detail/header.hpp>
  9. #define BOOST_UTF8_BEGIN_NAMESPACE \
  10. namespace boost { \
  11. namespace filesystem { \
  12. namespace detail {
  13. #define BOOST_UTF8_END_NAMESPACE \
  14. } \
  15. } \
  16. }
  17. #define BOOST_UTF8_DECL BOOST_FILESYSTEM_DECL
  18. #include <boost/detail/utf8_codecvt_facet.hpp>
  19. #undef BOOST_UTF8_BEGIN_NAMESPACE
  20. #undef BOOST_UTF8_END_NAMESPACE
  21. #undef BOOST_UTF8_DECL
  22. #include <boost/filesystem/detail/footer.hpp>
  23. #endif // BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP