Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:49:03

0001 //
0002 // Copyright (c) 2020 Alexander Grund
0003 //
0004 // Distributed under the Boost Software License, Version 1.0.
0005 // https://www.boost.org/LICENSE_1_0.txt
0006 
0007 #ifndef BOOST_NOWIDE_DETAIL_CONVERT_HPP_INCLUDED
0008 #define BOOST_NOWIDE_DETAIL_CONVERT_HPP_INCLUDED
0009 
0010 #include <boost/nowide/utf/convert.hpp>
0011 
0012 // Legacy compatibility header only. Include <boost/nowide/utf/convert.hpp> instead
0013 
0014 namespace boost {
0015 namespace nowide {
0016     namespace detail {
0017         using boost::nowide::utf::convert_buffer;
0018         using boost::nowide::utf::convert_string;
0019         using boost::nowide::utf::strlen;
0020     } // namespace detail
0021 } // namespace nowide
0022 } // namespace boost
0023 
0024 #endif