brintos

brintos / llvm-project-archived public Read only

0
0
Text · 381 B · 1a10ce0 Raw
32 lines · plain
1#import "InternalDefiner.h"2 3@interface InternalDefiner () {4    uintptr_t bar;5}6 7@end8 9@implementation InternalDefiner10 11-(id)init12{13    if (self = [super init])14    {15        foo = 2;16        bar = 3;17    }18    return self;19}20 21-(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b22{23    if (self = [super init])24    {25        foo = f;26        bar = b;27    }28    return self;29}30 31@end32