Files
IJSVG/source/IJSVGImageRep.h
2019-03-19 21:43:09 +00:00

23 lines
338 B
Objective-C

//
// IJSVGImageRep.h
// IJSVGExample
//
// Created by Curtis Hard on 15/03/2019.
// Copyright © 2019 Curtis Hard. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "IJSVGParser.h"
@class IJSVG;
@interface IJSVGImageRep : NSImageRep {
@private
IJSVG * _svg;
}
@property (nonatomic, readonly) CGRect viewBox;
@end