Clean up identifiers

FossilOrigin-Name: d35fd65699e79d96fc0588fff075f73b0dd7eb6ebfa0f6cffd0b0a3940e5fecd
This commit is contained in:
Jonathan Schleifer 2025-03-07 21:02:39 +00:00
parent 570b9e3bb3
commit c690c2b9ed
12 changed files with 364 additions and 276 deletions

21
src/Variable.m Normal file
View file

@ -0,0 +1,21 @@
#import "Variable.h"
@implementation Variable
- (instancetype)initWithName:(OFString *)name
min:(int)min
max:(int)max
storage:(int *)storage
function:(void (*)())function
persisted:(bool)persisted
{
self = [super initWithName:name];
_min = min;
_max = max;
_storage = storage;
_function = function;
_persisted = persisted;
return self;
}
@end