1 #include <Foundation/Foundation.h>
3 @interface Foo : NSObject
11 -(void) instance_method_mycat1;
12 -(void) instance_method_mycat2;
13 +(void) class_method_mycat;
15 @property(readonly) int property1;
16 @property(readonly) int property2;
17 @property(class,readonly) int property3;
18 @property(class,readonly) int property4;
22 @implementation Foo(mycat)
23 -(void) instance_method_mycat1 {}
24 -(void) instance_method_mycat2 {}
25 +(void) class_method_mycat {}
27 -(int) property1 { return 0; }
28 -(int) property2 { return 0; }
29 +(int) property3 { return 0; }
30 +(int) property4 { return 0; }