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