Espacios de nombres
Variantes
Acciones

std::ios_base::event

De cppreference.com
< cpp‎ | io‎ | ios base
 
 
Biblioteca de E/S
Manipuladores de E/S
E/S estilo C
Búferes
(en desuso en C++98)
Flujos
Abstracciones
E/S de archivos
E/S de cadenas
E/S de arrays
(en desuso en C++98)
(en desuso en C++98)
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
 
enum event;
Especifica el tipo de evento que se pasa a funciones registradas por register_callback() en eventos específicos. Las siguientes constantes son definidas:
Original:
Specifies the event type which is passed to functions registered by register_callback() on specific events. The following constants are defined:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Explanation
erase_event
emitido el ~ios_base() o basic_ios::copyfmt() (antes de la copia de los miembros tiene lugar)
Original:
issued on ~ios_base() or basic_ios::copyfmt() (before the copy of members takes place)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
imbue_event
emitido el imbue()
Original:
issued on imbue()
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
copyfmt_event
emitido el basic_ios::copyfmt() (después de la copia de los miembros tenga lugar, pero antes de que la configuración de excepciones se copian)
Original:
issued on basic_ios::copyfmt() (after the copy of members takes place, but before the exception settings are copied)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo