| 1 | #import <Foundation/Foundation.h> |
|---|---|
| 2 | |
| 3 | @class InternalClass; |
| 4 | |
| 5 | @interface Bar : NSObject { |
| 6 | @private |
| 7 | InternalClass *storage; |
| 8 | } |
| 9 | |
| 10 | - (NSString *)description; |
| 11 | |
| 12 | @end |
| 13 |
| 1 | #import <Foundation/Foundation.h> |
|---|---|
| 2 | |
| 3 | @class InternalClass; |
| 4 | |
| 5 | @interface Bar : NSObject { |
| 6 | @private |
| 7 | InternalClass *storage; |
| 8 | } |
| 9 | |
| 10 | - (NSString *)description; |
| 11 | |
| 12 | @end |
| 13 |