SVGAnimatedPreserveAspectRatio.h 454 B

123456789101112131415
  1. /**
  2. http://www.w3.org/TR/SVG/coords.html#InterfaceSVGAnimatedPreserveAspectRatio
  3. readonly attribute SVGPreserveAspectRatio baseVal;
  4. readonly attribute SVGPreserveAspectRatio animVal;
  5. */
  6. #import <Foundation/Foundation.h>
  7. #import "SVGPreserveAspectRatio.h"
  8. @interface SVGAnimatedPreserveAspectRatio : NSObject
  9. @property(nonatomic,strong) SVGPreserveAspectRatio* baseVal;
  10. @property(nonatomic,strong, readonly) SVGPreserveAspectRatio* animVal;
  11. @end