mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
12 lines
285 B
Objective-C
12 lines
285 B
Objective-C
/**
|
|
Parses the "<defs>" and "<use>" tags in SVG files.
|
|
|
|
NB: relies upon other parsers to parse the actual CONTENTS of a "defs" or "use" tag
|
|
*/
|
|
#import <Foundation/Foundation.h>
|
|
#import "SVGKParserExtension.h"
|
|
|
|
@interface SVGKParserDefsAndUse : NSObject <SVGKParserExtension>
|
|
|
|
@end
|