std::ios_base::event_callback
来自 cppreference.com
typedef void ( *event_callback )( event type, ios_base& ios, int index ); |
||
可以使用 register_callback() 注册的函数回调类型,在特定事件发生时调用。
type 是 ios_base::event 类型的值,表示将调用此回调的事件类型。
ios 指的是调用回调的流对象:*this 在回调被 std::ios_base 和 std::basic_ios 成员函数调用时作为参数传递。
index 是在注册函数时传递给 register_callback() 的用户提供的 值。
[编辑] 另请参阅
复制格式信息 ( std::basic_ios<CharT,Traits> 的公共成员函数) | |
设置区域设置 (公共成员函数) | |
[虚函数] |
析构对象 (虚拟公共成员函数) |
注册事件回调函数 (公共成员函数) |