2019-12-26 15:55:27 +04:00

12 lines
630 B
Objective-C

#import "SVGUseElement.h"
@interface SVGUseElement ()
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* x;
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* y;
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* width;
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* height;
@property(nonatomic, strong, readwrite) SVGElementInstance* instanceRoot;
@property(nonatomic, strong, readwrite) SVGElementInstance* animatedInstanceRoot;
@end