future2.m 205 B

1234567891011121314151617
  1. #include "future.h"
  2. @implementation Sub1
  3. +(Class)classref {
  4. return [Sub1 class];
  5. }
  6. +(int)method {
  7. return 1;
  8. }
  9. @end
  10. @implementation SubSub1
  11. +(int)method {
  12. return 1 + [super method];
  13. }
  14. @end