FossilOrigin-Name: 5e43ae9916e0f61b00913c7f5c72f9349e1afecab908fd09b193edfd3f10006d
22 lines
691 B
Objective-C
22 lines
691 B
Objective-C
#import "Identifier.h"
|
|
|
|
OF_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface Variable : Identifier
|
|
@property (readonly, nonatomic) int min, max;
|
|
@property (readonly, nonatomic) int *storage;
|
|
@property (readonly, nonatomic) void (*__cdecl function)();
|
|
@property (readonly, nonatomic) bool persisted;
|
|
|
|
- (instancetype)initWithName:(OFString *)name OF_UNAVAILABLE;
|
|
- (instancetype)initWithName:(OFString *)name
|
|
min:(int)min
|
|
max:(int)max
|
|
storage:(int *)storage
|
|
function:(void (*__cdecl)())function
|
|
persisted:(bool)persisted;
|
|
- (void)printValue;
|
|
- (void)setValue:(int)value;
|
|
@end
|
|
|
|
OF_ASSUME_NONNULL_END
|