-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSVGKit.h
More file actions
50 lines (48 loc) · 1.33 KB
/
SVGKit.h
File metadata and controls
50 lines (48 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
//
// SVGKit.h
// SVGKit
//
// Copyright Matt Rajca 2010-2011. All rights reserved.
//
#include "TargetConditionals.h"
#if TARGET_OS_IPHONE
#import "SVGCircleElement.h"
#import "SVGDefsElement.h"
#import "SVGDescriptionElement.h"
#import "SVGDocument.h"
#import "SVGDocument+CA.h"
#import "SVGElement.h"
#import "SVGEllipseElement.h"
#import "SVGGroupElement.h"
#import "SVGImageElement.h"
#import "SVGLineElement.h"
#import "SVGPathElement.h"
#import "SVGPolygonElement.h"
#import "SVGPolylineElement.h"
#import "SVGRectElement.h"
#import "SVGShapeElement.h"
#import "SVGTitleElement.h"
#import "SVGUtils.h"
#import "SVGView.h"
#import "SVGPathView.h"
#import "SVGPattern.h"
#else
#import <SVGKit/SVGCircleElement.h>
#import <SVGKit/SVGDefsElement.h>
#import <SVGKit/SVGDescriptionElement.h>
#import <SVGKit/SVGDocument.h>
#import <SVGKit/SVGDocument+CA.h>
#import <SVGKit/SVGElement.h>
#import <SVGKit/SVGEllipseElement.h>
#import <SVGKit/SVGGroupElement.h>
#import <SVGKit/SVGImageElement.h>
#import <SVGKit/SVGLineElement.h>
#import <SVGKit/SVGPathElement.h>
#import <SVGKit/SVGPolygonElement.h>
#import <SVGKit/SVGPolylineElement.h>
#import <SVGKit/SVGRectElement.h>
#import <SVGKit/SVGShapeElement.h>
#import <SVGKit/SVGTitleElement.h>
#import <SVGKit/SVGUtils.h>
#import <SVGKit/SVGView.h>
#endif