]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / objc / real-definition / Foo.h
1 #import <Foundation/Foundation.h>
2
3 #import "Bar.h"
4
5 @interface Foo : NSObject {
6     Bar *_bar;
7 }
8
9 - (NSString *)description;
10
11 @end