Files
swift-mirror/test/IDE/Inputs/print_clang_header/header-to-print.h

32 lines
447 B
Objective-C

#import <Foundation.h>
@import Dispatch;
#include "other-header.h"
#define MACRO_GOT_UNDEFINED 1
#undef MACRO_GOT_UNDEFINED
#define MY_MACRO 1
void doSomethingInHead(int arg);
@interface BaseInHead
- (void)doIt:(int)arg;
@end
/// Awesome name.
@interface SameName
@end
@protocol SameName
@end
@interface BaseInHead(SomeCategory)
-(void)doItInCategory;
@end
@protocol Superproto
-(void)lala;
@end
@class Cake;
struct Arkham;
@protocol Soul;