forked from SVGKit/SVGKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVGKit.h
More file actions
41 lines (33 loc) · 1.29 KB
/
Copy pathSVGKit.h
File metadata and controls
41 lines (33 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*!
SVGKit - https://github.com/SVGKit/SVGKit
THE MOST IMPORTANT ELEMENTS YOU'LL INTERACT WITH:
1. SVGKImage = contains most of the convenience methods for loading / reading / displaying SVG files
2. SVGKImageView = the easiest / fastest way to display an SVGKImage on screen
3. SVGKLayer = the low-level way of getting an SVG as a bunch of layers
SVGKImage makes heavy use of the following classes - you'll often use these classes (most of them given to you by an SVGKImage):
4. SVGKSource = the "file" or "URL" for loading the SVG data
5. SVGKParseResult = contains the parsed SVG file AND/OR the list of errors during parsing
*/
#include "TargetConditionals.h"
#import "DOMHelperUtilities.h"
#import "SVGCircleElement.h"
#import "SVGDefsElement.h"
#import "SVGDescriptionElement.h"
#import "SVGKImage.h"
#import "SVGElement.h"
#import "SVGEllipseElement.h"
#import "SVGGElement.h"
#import "SVGImageElement.h"
#import "SVGLineElement.h"
#import "SVGPathElement.h"
#import "SVGPolygonElement.h"
#import "SVGPolylineElement.h"
#import "SVGRectElement.h"
#import "BaseClassForAllSVGBasicShapes.h"
#import "SVGKSource.h"
#import "SVGTitleElement.h"
#import "SVGUtils.h"
#import "SVGKPattern.h"
#import "SVGKImageView.h"
#import "SVGKLayeredImageView.h"
#import "SVGKLayer.h"