17 lines
430 B
C
17 lines
430 B
C
|
/**
|
||
|
|
||
|
*/
|
||
|
#import "SVGKSource.h"
|
||
|
|
||
|
@interface SVGKSourceLocalFile : SVGKSource
|
||
|
|
||
|
@property (nonatomic, strong) NSString* filePath;
|
||
|
@property (nonatomic, readonly) BOOL wasRelative;
|
||
|
|
||
|
+ (SVGKSourceLocalFile*)sourceFromFilename:(NSString*)p;
|
||
|
|
||
|
+ (SVGKSourceLocalFile *)internalSourceAnywhereInBundleUsingName:(NSString *)name;
|
||
|
+ (SVGKSourceLocalFile *)internalSourceAnywhereInBundle:(NSBundle *)bundle usingName:(NSString *)name;
|
||
|
|
||
|
@end
|