30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
* does all the caching and other stuff. If you override these methods without
* the _ prefix, you *WILL* break caching and get broken results!
*/
@interface OFStream: OFObject
{
@public
char *cache;
@protected
char *wBuffer;
size_t cacheLen, wBufferLen;
BOOL buffersWrites;
BOOL isBlocking;
}
#ifdef OF_HAVE_PROPERTIES
|
>
>
>
>
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
* does all the caching and other stuff. If you override these methods without
* the _ prefix, you *WILL* break caching and get broken results!
*/
@interface OFStream: OFObject
{
@public
char *cache;
/* Work around a bug in gcc 4.4.4 (possibly only on Haiku) */
#if !defined(__GNUC__) || __GNUC__ != 4 || __GNUC_MINOR__ != 4 || \
__GNUC_PATCHLEVEL__ != 4
@protected
#endif
char *wBuffer;
size_t cacheLen, wBufferLen;
BOOL buffersWrites;
BOOL isBlocking;
}
#ifdef OF_HAVE_PROPERTIES
|