* @brief Get stream cursor position from parser context * * `Tell()` will give the real position of the cursor from the parser context. * `vtkResourceParser` will buffer data read for the stream to parse it, this is the context. * Because of this, the stream position will always by "in advance" of the parser real input * position. * `this->Tell()` will always be lesser or equal t
| 233 | * stream does not support seeking. |
| 234 | */ |
| 235 | vtkTypeInt64 Tell() { return this->Context.Tell(); } |
| 236 | |
| 237 | /** |
| 238 | * @brief Read data from the input stream |