1 #ifndef SOMEKIT_PRIVATE_H 2 #define SOMEKIT_PRIVATE_H 3 4 #import <SomeKit/SomeKit.h> 5 6 @interface A(Private) 7 -(A*)privateTransform:(A*)input; 8 9 @property (nonatomic) A* internalProperty; 10 @end 11 12 @protocol InternalProtocol 13 @end 14 15 #endif 16 17