objc_property.h 176 B

123456789101112
  1. /* For use with the objc_property.m PCH test */
  2. @interface TestProperties
  3. {
  4. int value;
  5. float percentage;
  6. }
  7. + alloc;
  8. @property int value;
  9. @property float percentage;
  10. @end