Differences From Artifact [81ef70d19a]:
- File src/OFStream+Private.h — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 809) [annotate] [blame] [check-ins using] [more...]
To Artifact [55a5b86424]:
- File src/OFStream+Private.h — part of check-in [b6cb3addd0] at 2020-06-28 15:03:23 on branch trunk — Use OF_DIRECT(_MEMBERS) where appropriate (user: js, size: 827) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 |
* file.
*/
#import "OFStream.h"
OF_ASSUME_NONNULL_BEGIN
@interface OFStream ()
@property (readonly, nonatomic, getter=of_isWaitingForDelimiter)
bool of_waitingForDelimiter;
@end
OF_ASSUME_NONNULL_END
| > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
* file.
*/
#import "OFStream.h"
OF_ASSUME_NONNULL_BEGIN
OF_DIRECT_MEMBERS
@interface OFStream ()
@property (readonly, nonatomic, getter=of_isWaitingForDelimiter)
bool of_waitingForDelimiter;
@end
OF_ASSUME_NONNULL_END
|