working_with_multiple_locales.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 filetype=cpp.doxygen
  9. /*!
  10. \page working_with_multiple_locales Working with multiple locales
  11. Boost.Locale allows you to work safely with multiple locales in the same process. As we mentioned before, the locale
  12. generation process is not a cheap one. Thus, when we work with multiple locales and need to switch between them,
  13. we recommend that you create all the locales you need when the program starts.
  14. To simplify this process, the boost::locale::generator class has an option to cache all
  15. generated locales. With this option, when you create a locale that was previously generated, it would be fetched
  16. from the existing locale set instead. This operation is thread safe.
  17. This option must be explicitly enabled by calling the \ref boost::locale::generator::locale_cache_enabled() "locale_cache_enabled" member function of boost::locale::generator with \c true as the parameter.
  18. For example:
  19. \code
  20. generator gen;
  21. gen.locale_cache_enabled(true);
  22. gen("en_US.UTF-8");
  23. gen("de_DE.UTF-8");
  24. gen("ja_JP.UTF-8");
  25. // Create all locales
  26. std::locale en=gen("en_US.UTF-8");
  27. // Fetch an existing locale from the cache
  28. std::locale ar=gen("ar_EG.UTF-8");
  29. // Because ar_EG not in the cache, a new locale is generated (and cached)
  30. \endcode
  31. Then these locales can be imbued to \c iostreams or used directly as parameters to various functions.
  32. */