Espacios de nombres
Variantes
Acciones

std::ios_base::event_callback

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)
 
 
typedef void (*event_callback)(event type, ios_base& ios, int index);
El tipo de devoluciones de llamada de función que se pueden registrar usando register_callback() ser llamado en eventos específicos .
Original:
The type of function callbacks that can be registered using register_callback() to be called on specific events.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
type se refiere al tipo de evento, ios refiere a *this, index es un valor específico pasa a register_callback() al registrar la función .
Original:
type refers to the type of the event, ios refers to *this, index is a specific value passed to register_callback() when registering the function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.