mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
22 lines
418 B
Objective-C
22 lines
418 B
Objective-C
/**
|
|
http://www.w3.org/TR/SVG/struct.html#InterfaceSVGGElement
|
|
|
|
interface SVGGElement : SVGElement,
|
|
SVGTests,
|
|
SVGLangSpace,
|
|
SVGExternalResourcesRequired,
|
|
SVGStylable,
|
|
SVGTransformable {
|
|
*/
|
|
|
|
#import "SVGElement.h"
|
|
#import "SVGElement_ForParser.h"
|
|
|
|
#import "ConverterSVGToCALayer.h"
|
|
#import "SVGTransformable.h"
|
|
|
|
|
|
@interface SVGGElement : SVGElement <SVGTransformable, SVGStylable, ConverterSVGToCALayer >
|
|
|
|
@end
|