ChipMaster's trial hacks on C++CMS starting with v1.2.1. Not sure I'll follow on with the v2 since it looks to be breaking and mostly frivolous.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
674 B

  1. //
  2. // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. #ifndef BOOSTER_LOCALE_IMPL_ICU_CODECVT_HPP
  9. #define BOOSTER_LOCALE_IMPL_ICU_CODECVT_HPP
  10. #include <booster/config.h>
  11. #include <booster/locale/util.h>
  12. #include <booster/auto_ptr_inc.h>
  13. namespace booster {
  14. namespace locale {
  15. namespace impl_icu {
  16. BOOSTER_API
  17. std::auto_ptr<util::base_converter> create_uconv_converter(std::string const &encoding);
  18. } // impl_icu
  19. } // locale
  20. } // boost
  21. #endif
  22. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4