Overview
Comment: | Documentation fixes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
318d5d7e5329482827ec8d865a6c3319 |
User & Date: | js on 2012-10-29 12:35:56 |
Other Links: | manifest | tags |
Context
2012-10-29
| ||
13:03 | Simplify seeking. check-in: dc1093e2a5 user: js tags: trunk | |
12:35 | Documentation fixes. check-in: 318d5d7e53 user: js tags: trunk | |
12:02 | Set version to 0.8-dev. check-in: 5e6db73763 user: js tags: trunk | |
Changes
Modified src/OFSeekableStream.h from [56eb0b9d36] to [d4678f54b9].
︙ | ︙ | |||
26 27 28 29 30 31 32 | #import "OFStream.h" /*! * @brief A stream that supports seeking. * * @note If you want to subclass this, override lowlevelSeekToOffset:, * lowlevelSeekForwardWithOffset: and lowlevelSeekToOffsetRelativeToEnd:, | | | | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #import "OFStream.h" /*! * @brief A stream that supports seeking. * * @note If you want to subclass this, override lowlevelSeekToOffset:, * lowlevelSeekForwardWithOffset: and lowlevelSeekToOffsetRelativeToEnd:, * but nothing else, as they do the actual work. OFSeekableStream uses * those and makes them work together with the caching of OFStream. * If you override these methods without the lowlevel prefix, you * <i>will</i> break caching, get broken results and seek to the wrong * position! */ @interface OFSeekableStream: OFStream /*! * @brief Seeks to the specified absolute offset. * * @param offset The offset in bytes */ |
︙ | ︙ |