std::basic_streambuf::pubimbue, std::basic_streambuf::imbue
From cppreference.com
< cpp | io | basic streambuf
std::locale pubimbue( const std::locale& loc ); |
(1) | |
protected: virtual std::locale imbue( const std::locale& loc ); |
(2) | |
Changes the associated locale.
1) Calls imbue(loc) of the most derived class
2) The base class version of this function has no effect. The derived classes may override this function in order to be informed about the changes of the locale. The derived class may cache the locale and member facets between calls to imbue().
Contents |
[edit] Parameters
loc | - | locale object to associate |
[edit] Return value
Previous associated locale.
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
obtains a copy of the associated locale (public member function) |