SVGUseElement_Mutable.h 630 B

1234567891011
  1. #import "SVGUseElement.h"
  2. @interface SVGUseElement ()
  3. @property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* x;
  4. @property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* y;
  5. @property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* width;
  6. @property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* height;
  7. @property(nonatomic, strong, readwrite) SVGElementInstance* instanceRoot;
  8. @property(nonatomic, strong, readwrite) SVGElementInstance* animatedInstanceRoot;
  9. @end