std::ios_base::imbue

From cppreference.com
< cpp‎ | io‎ | ios base
 
 
Input/output library
I/O manipulators
C-style I/O
Buffers
(deprecated in C++98)
Streams
Abstractions
File I/O
String I/O
Array I/O
(deprecated in C++98)
(deprecated in C++98)
(deprecated in C++98)
Synchronized Output
Types
Error category interface
(C++11)
 
 
std::locale imbue( const std::locale& loc );

Sets the associated locale of the stream to the given one. Before returning, each function, registered by register_callback() is called with imbue_event as a parameter.

Parameters

loc - new locale to associate the stream to

Return value

The locale object, associated with the stream before the operation

Example

See also

returns current locale
(public member function)