blob: 1bbcc823cb482753b307523795a3e106cbc34131 [file] [log] [blame]
#ifndef IMPORTED_PROTOCOLS_H
#define IMPORTED_PROTOCOLS_H
@import Foundation;
@protocol ImportedProtocolBase;
@protocol ImportedProtocolBase <NSObject>
@end
typedef NSObject<ImportedProtocolBase> * ImportedProtocolBase_t;
@protocol IPSub;
@protocol IPSub <ImportedProtocolBase>
@end
typedef NSObject<IPSub> * IPSub_t;
typedef NSObject<IPSub> * Dummy;
void takesIPSub(IPSub_t in);
#endif // IMPORTED_PROTOCOLS_H