SVGDocument_Mutable.h 432 B

12345678910111213
  1. /**
  2. Makes the writable properties all package-private, effectively
  3. */
  4. #import "SVGDocument.h"
  5. @interface SVGDocument ()
  6. @property (nonatomic, strong, readwrite) NSString* title;
  7. @property (nonatomic, strong, readwrite) NSString* referrer;
  8. @property (nonatomic, strong, readwrite) NSString* domain;
  9. @property (nonatomic, strong, readwrite) NSString* URL;
  10. @property (nonatomic, strong, readwrite) SVGSVGElement* rootElement;
  11. @end