12 lines
163 B
Objective-C
12 lines
163 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class InternalClass;
|
|
|
|
@interface Bar : NSObject {
|
|
@private
|
|
InternalClass *storage;
|
|
}
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|