std::ios_base::event_callback
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| typedef void (*event_callback)(event type, ios_base& ios, int index); |
||
特定のイベントに呼ばれるように
register_callback()使って登録することができる関数のコールバックのタイプ.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イベントの種類を指し、iosは指す*this、index機能を登録するときにregister_callback()に渡される特定の値です.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.