Home | History | Annotate | Download | only in hidden-ivars
      1 #import <Foundation/Foundation.h>
      2 #import <stdint.h>
      3 
      4 @interface InternalDefiner : NSObject {
      5 @public
      6     uintptr_t foo;
      7 }
      8 
      9 -(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b;
     10 
     11 @end
     12