a facet that holds general information about locale More...
#include <info.hpp>
Public Types | |
enum | string_propery { language_property, country_property, variant_property, encoding_property, name_property } |
String information about the locale. More... | |
enum | integer_property { utf8_property } |
Integer information about locale. More... | |
Public Member Functions | |
info (size_t refs=0) | |
Standard facet's constructor. More... | |
std::string | language () const |
Get language name. More... | |
std::string | country () const |
Get country name. More... | |
std::string | variant () const |
Get locale variant. More... | |
std::string | encoding () const |
Get encoding. More... | |
std::string | name () const |
Get the name of the locale, like en_US.UTF-8. More... | |
bool | utf8 () const |
True if the underlying encoding is UTF-8 (for char streams and strings) More... | |
Static Public Attributes | |
static std::locale::id | id |
This member uniquely defines this facet, required by STL. More... | |
Protected Member Functions | |
virtual std::string | get_string_property (string_propery v) const =0 |
Get string property by its id v. More... | |
virtual int | get_integer_property (integer_property v) const =0 |
Get integer property by its id v. More... | |
a facet that holds general information about locale
This facet should be always created in order to make all Boost.Locale functions work
|
inline |
Standard facet's constructor.
|
inline |
Get country name.
|
inline |
Get encoding.
|
protectedpure virtual |
Get integer property by its id v.
|
protectedpure virtual |
Get string property by its id v.
|
inline |
Get language name.
|
inline |
Get the name of the locale, like en_US.UTF-8.
|
inline |
True if the underlying encoding is UTF-8 (for char streams and strings)
|
inline |
Get locale variant.
|
static |
This member uniquely defines this facet, required by STL.