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