mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
23 lines
542 B
Objective-C
23 lines
542 B
Objective-C
/**
|
|
* http://www.w3.org/TR/SVG/types.html#InterfaceSVGFitToViewBox
|
|
|
|
interface SVGFitToViewBox {
|
|
readonly attribute SVGAnimatedRect viewBox;
|
|
readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
#import "SVGRect.h"
|
|
#import "SVGAnimatedPreserveAspectRatio.h"
|
|
|
|
@protocol SVGFitToViewBox <NSObject>
|
|
|
|
@property (nonatomic) /* SVGAnimatedRect */ SVGRect viewBox;
|
|
|
|
@property(nonatomic,retain) SVGAnimatedPreserveAspectRatio* preserveAspectRatio;
|
|
|
|
@end
|