convert.hpp 703 B

12345678910111213141516171819202122232425
  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_CONVERT_HPP_INCLUDED
  9. #define BOOST_NOWIDE_DETAIL_CONVERT_HPP_INCLUDED
  10. #include <boost/nowide/utf/convert.hpp>
  11. // Legacy compatibility header only. Include <boost/nowide/utf/convert.hpp> instead
  12. namespace boost {
  13. namespace nowide {
  14. namespace detail {
  15. using boost::nowide::utf::convert_buffer;
  16. using boost::nowide::utf::convert_string;
  17. using boost::nowide::utf::strlen;
  18. } // namespace detail
  19. } // namespace nowide
  20. } // namespace boost
  21. #endif