std::ios_base:: event
From cppreference.net
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(C++20)
|
||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
| Synchronized Output | ||||
|
(C++20)
|
||||
| Types | ||||
| Error category interface | ||||
|
(C++11)
|
||||
|
(C++11)
|
std::ios_base
| Member functions | ||||
| Formatting | ||||
| Locales | ||||
| Internal extensible array | ||||
| Miscellaneous | ||||
| Member classes | ||||
| Member types | ||||
|
ios_base::event
|
||||
|
enum
event
{
erase_event, imbue_event, copyfmt_event
}
;
|
||
register_callback() によって登録された関数に特定のイベント発生時に渡されるイベント種別を指定します。以下の定数が定義されています:
| 列挙子 | 意味 |
erase_event
|
~ios_base() または basic_ios::copyfmt() で発行される(メンバーのコピーが行われる前) |
imbue_event
|
imbue() で発行される |
copyfmt_event
|
basic_ios::copyfmt() で発行される(メンバーのコピーが行われた後、例外設定がコピーされる前) |
例
|
このセクションは不完全です
理由: 例がありません |