Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:28

0001 // Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
0002 // Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
0003 // Distributed under the Boost Software License, Version 1.0. (See
0004 // accompanying file LICENSE_1_0.txt or copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP
0008 #define BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP
0009 
0010 #include <boost/config.hpp>
0011 
0012 #ifdef BOOST_NO_STD_WSTREAMBUF
0013 #error "wide char i/o not supported on this platform"
0014 #endif
0015 
0016 // use boost's utf8 codecvt facet
0017 #include <boost/archive/detail/decl.hpp>
0018 #define BOOST_UTF8_BEGIN_NAMESPACE \
0019      namespace boost { namespace archive { namespace detail {
0020 #define BOOST_UTF8_END_NAMESPACE }}}
0021 
0022 #include <boost/detail/utf8_codecvt_facet.hpp>
0023 
0024 #undef BOOST_UTF8_END_NAMESPACE
0025 #undef BOOST_UTF8_DECL
0026 #undef BOOST_UTF8_BEGIN_NAMESPACE
0027 
0028 #endif // BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP