ObjFW  Diff

Differences From Artifact [48f6c3bf7b]:

To Artifact [22230c5b39]:


22
23
24
25
26
27
28


29
30
31
32
33
34
35
#endif

#include <sys/types.h>

#import "OFStream.h"

/*!


 * @brief A stream that supports seeking.
 *
 * @note If you want to subclass this, override
 *	 @ref lowlevelSeekToOffset:whence:. OFSeekableStream uses this method
 *	 and makes it work together with the caching of OFStream. If you
 *	 override this methods without the lowlevel prefix, you *will* break
 *	 caching, get broken results and seek to the wrong position!







>
>







22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#endif

#include <sys/types.h>

#import "OFStream.h"

/*!
 * @class OFSeekableStream OFSeekableStream.h ObjFW/OFSeekableStream.h
 *
 * @brief A stream that supports seeking.
 *
 * @note If you want to subclass this, override
 *	 @ref lowlevelSeekToOffset:whence:. OFSeekableStream uses this method
 *	 and makes it work together with the caching of OFStream. If you
 *	 override this methods without the lowlevel prefix, you *will* break
 *	 caching, get broken results and seek to the wrong position!