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.
 
 
 
 
 
 

29 lines
703 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_POSIX_CODECVT_HPP
  9. #define BOOSTER_LOCALE_IMPL_POSIX_CODECVT_HPP
  10. #include <booster/config.h>
  11. #include <booster/locale/util.h>
  12. #include <booster/auto_ptr_inc.h>
  13. #include <string>
  14. namespace booster {
  15. namespace locale {
  16. namespace impl_posix {
  17. BOOSTER_API
  18. std::auto_ptr<util::base_converter> create_iconv_converter(std::string const &encoding);
  19. } // impl_posix
  20. } // locale
  21. } // boost
  22. #endif
  23. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4