23 lines
338 B
Objective-C
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
|