]>
Commit | Line | Data |
---|---|---|
b1f7435d A |
1 | |
2 | #include <Foundation/Foundation.h> | |
3 | ||
4 | int some_global_to_stop_libtool_warning = 5; | |
5 | ||
6 | @interface NSObject (stuff) | |
7 | - (void) mycatmethod1; | |
8 | @end | |
9 | ||
10 | @implementation NSObject (stuff) | |
11 | - (void) mycatmethod1 { } | |
12 | @end | |
13 | ||
14 | @interface NSObject (other) | |
15 | - (void) mycatmethod2; | |
16 | @end | |
17 | ||
18 | @implementation NSObject (other) | |
19 | - (void) mycatmethod2 { } | |
20 | @end | |
21 |