11 lines
131 B
Objective-C
11 lines
131 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "Bar.h"
|
|
|
|
@interface Foo : NSObject {
|
|
Bar *_bar;
|
|
}
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|