Swiftgram/submodules/Svg/Sources/SVGKit/Source/DOM classes/SVG-DOM/SVGAnimatedPreserveAspectRatio.h
2019-12-26 15:55:27 +04:00

16 lines
454 B
Objective-C

/**
http://www.w3.org/TR/SVG/coords.html#InterfaceSVGAnimatedPreserveAspectRatio
readonly attribute SVGPreserveAspectRatio baseVal;
readonly attribute SVGPreserveAspectRatio animVal;
*/
#import <Foundation/Foundation.h>
#import "SVGPreserveAspectRatio.h"
@interface SVGAnimatedPreserveAspectRatio : NSObject
@property(nonatomic,strong) SVGPreserveAspectRatio* baseVal;
@property(nonatomic,strong, readonly) SVGPreserveAspectRatio* animVal;
@end