utf8_codecvt_facet.hpp 903 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
  2. // Andrew Lumsdaine, Indiana University (lums@osl.iu.edu). Permission to copy,
  3. // use, modify, sell and distribute this software is granted provided this
  4. // copyright notice appears in all copies. This software is provided "as is"
  5. // without express or implied warranty, and with no claim as to its suitability
  6. // for any purpose.
  7. #ifndef BOOST_PROGRAM_OPTIONS_UTF8_CODECVT_FACET_HPP
  8. #define BOOST_PROGRAM_OPTIONS_UTF8_CODECVT_FACET_HPP
  9. #include <boost/program_options/config.hpp>
  10. #define BOOST_UTF8_BEGIN_NAMESPACE \
  11. namespace boost { namespace program_options { namespace detail {
  12. #define BOOST_UTF8_END_NAMESPACE }}}
  13. #define BOOST_UTF8_DECL BOOST_PROGRAM_OPTIONS_DECL
  14. #include <boost/detail/utf8_codecvt_facet.hpp>
  15. #undef BOOST_UTF8_BEGIN_NAMESPACE
  16. #undef BOOST_UTF8_END_NAMESPACE
  17. #undef BOOST_UTF8_DECL
  18. #endif