--------------------------------------------------------------------- Seek to the given offset / origin in the output IOStream. * * Flushes the internal buffer and the output IOStream prior to seeking. */
| 126 | * |
| 127 | * Flushes the internal buffer and the output IOStream prior to seeking. */ |
| 128 | aiReturn Seek(size_t pOffset, aiOrigin pOrigin=aiOrigin_SET) |
| 129 | { |
| 130 | Flush(); |
| 131 | return stream->Seek(pOffset, pOrigin); |
| 132 | } |
| 133 | |
| 134 | // --------------------------------------------------------------------- |
| 135 | /** Tell the current position in the output IOStream. |