std::ios_base::event_callback
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
typedefvoid(*event_callback)(event type, ios_base& ios, int index); | ||
Il tipo di funzione callback che possono essere registrati utilizzando
register_callback()
di essere chiamato su eventi specifici.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.
You can help to correct and verify the translation. Click here for instructions.
type
si riferisce al tipo di evento, ios
riferisce a *this, index
è un valore specifico passato a register_callback()
quando la funzione di registrazione.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.
You can help to correct and verify the translation. Click here for instructions.