File indexing completed on 2025-01-18 09:28:28
0001
0002
0003
0004
0005
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
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