Files
swift-mirror/test/IDE/Inputs/header.h
Argyrios Kyrtzidis a586753f0f [IDE] Implement generating the Swift interface for an C/ObjC header
This translates clang arguments to swift ones, uses the bridging header
functionality to parse the provided file, and re-uses part of the module interface
printing implementation to print an interface for the header.

Part of rdar://19939192

Swift SVN r28062
2015-05-02 01:17:45 +00:00

12 lines
152 B
Objective-C

void doSomethingInHead(int arg);
@interface BaseInHead
- (void)doIt:(int)arg;
@end
/// Awesome name.
@interface SameName
@end
@protocol SameName
@end