1234567891011121314151617181920212223242526272829303132333435363738 |
- #import "SVGLength.h"
- #import "SVGElement.h"
- @class SVGElementInstance;
- #import "SVGElementInstance.h"
- #import "ConverterSVGToCALayer.h"
- #import "SVGTransformable.h"
- @interface SVGUseElement : SVGElement < SVGTransformable /*FIXME: delete this rubbish:*/, ConverterSVGToCALayer>
- @property(nonatomic, strong, readonly) SVGLength* x;
- @property(nonatomic, strong, readonly) SVGLength* y;
- @property(nonatomic, strong, readonly) SVGLength* width;
- @property(nonatomic, strong, readonly) SVGLength* height;
- @property(nonatomic, strong, readonly) SVGElementInstance* instanceRoot;
- @property(nonatomic, strong, readonly) SVGElementInstance* animatedInstanceRoot;
- @end
|