]> git.saurik.com Git - apple/objc4.git/blob - test/MRRBase.m
objc4-680.tar.gz
[apple/objc4.git] / test / MRRBase.m
1 //
2 // MRRBase.m
3 // TestARRLayouts
4 //
5 // Created by Patrick Beard on 3/8/11.
6 // Copyright 2011 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "MRRBase.h"
10
11 #if 1
12 @interface MRRBase () {
13 @private
14 double number;
15 id object;
16 void *pointer;
17 __weak id delegate;
18 }
19 @end
20 #endif
21
22 @implementation MRRBase
23 @synthesize number, object, pointer, delegate;
24 @end