Differences From Artifact [a5636ed577]:
- File src/ConsoleLine.h — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 277) [annotate] [blame] [check-ins using]
To Artifact [3048f3e388]:
- File src/ConsoleLine.h — part of check-in [7a98b92af9] at 2025-03-25 23:52:50 on branch trunk — Make use of OF_DIRECT (user: js, size: 295) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 | + | #import <ObjFW/ObjFW.h> OF_DIRECT_MEMBERS @interface ConsoleLine: OFObject @property (readonly, copy) OFString *text; @property (readonly) int outtime; + (instancetype)lineWithText:(OFString *)text outtime:(int)outtime; - (instancetype)initWithText:(OFString *)text outtime:(int)outtime; @end |