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.