convert.hpp 652 B

123456789101112131415161718192021222324
  1. //
  2. // Copyright (c) 2020 Alexander Grund
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // https://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_NOWIDE_DETAIL_CONVERT_HPP_INCLUDED
  7. #define BOOST_NOWIDE_DETAIL_CONVERT_HPP_INCLUDED
  8. #include <boost/nowide/utf/convert.hpp>
  9. // Legacy compatibility header only. Include <boost/nowide/utf/convert.hpp> instead
  10. namespace boost {
  11. namespace nowide {
  12. namespace detail {
  13. using boost::nowide::utf::convert_buffer;
  14. using boost::nowide::utf::convert_string;
  15. using boost::nowide::utf::strlen;
  16. } // namespace detail
  17. } // namespace nowide
  18. } // namespace boost
  19. #endif