filesbox/app/filesbox_ios/FilesBox/Pods/SVGKit/Source/Sources/SVGKSourceLocalFile.h
2023-09-21 10:53:23 +08:00

17 lines
430 B
Objective-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