std::ios_base::seekdir
提供: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 /*implementation defined*/ seekdir; |
||
| static constexpr seekdir beg = /*implementation defined*/ static constexpr seekdir end = /*implementation defined*/ |
||
ファイルシーク方向の種類を指定します。以下の定数が定義されています
Original:
Specifies file seeking direction type. The following constants are defined:
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.
| 定数
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
| beg | ストリームの先頭
Original: the beginning of a stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| end | ストリームのエンディング
Original: the ending of a stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| cur | ストリームの位置インジケータの現在位置
Original: the current position of stream position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 例
| This section is incomplete Reason: no example |