ObjFW  Check-in [7c1da1aa15]

Overview
Comment:Documentation fixes.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.7
Files: files | file ages | folders
SHA3-256: 7c1da1aa154803569b0e8dc50925a017e08c721d1d11ae9c76c7d21fc4c30c4d
User & Date: js on 2012-10-29 12:37:00
Other Links: branch diff | manifest | tags
Context
2012-10-29
13:37
Documentation improvements (add references). check-in: 1bcd4b3d46 user: js tags: 0.7
12:37
Documentation fixes. check-in: 7c1da1aa15 user: js tags: 0.7
11:58
Fix incorrect framework version. check-in: d43fda6b79 user: js tags: 0.7
Changes

Modified src/OFSeekableStream.h from [38bd04ae73] to [ece356189b].

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. Those are not defined in the headers, but 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
 */







|
|
|
|
|







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
 */