contrib/objcwrapper: add the check rule with a few tests
[nit.git] / contrib / objcwrapper / tests / MyClass.h
1 @interface MyClass : NSObject
2 <NSCoding, NSCopying, NSMutableCopying, NSFastEnumeration>
3
4 + (id) array;
5 + (id) arrayWithContentsOfFile: (NSString*)file;
6
7 - (id) arrayWithArray: (MyClass*)array;
8
9 @property (readonly) NSUInteger count;
10 @property NSUInteger head;
11
12 @end