utf.hpp 589 B

1234567891011121314151617181920212223
  1. //
  2. // Copyright (c) 2020 Alexander Grund
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. #ifndef BOOST_NOWIDE_DETAIL_UTF_HPP_INCLUDED
  9. #define BOOST_NOWIDE_DETAIL_UTF_HPP_INCLUDED
  10. #include <boost/nowide/utf/utf.hpp>
  11. // Legacy compatibility header only. Include <boost/nowide/utf/utf.hpp> instead
  12. namespace boost {
  13. namespace nowide {
  14. namespace detail {
  15. namespace utf = boost::nowide::utf;
  16. } // namespace detail
  17. } // namespace nowide
  18. } // namespace boost
  19. #endif