future.h 212 B

123456789101112131415
  1. #include "test.h"
  2. @interface Sub1 : TestRoot
  3. +(int)method;
  4. +(Class)classref;
  5. @end
  6. @interface Sub2 : TestRoot
  7. +(int)method;
  8. +(Class)classref;
  9. @end
  10. @interface SubSub1 : Sub1 @end
  11. @interface SubSub2 : Sub2 @end