21 lines
360 B
Objective-C
21 lines
360 B
Objective-C
//
|
|
// IJSVGForeignObject.h
|
|
// IconJar
|
|
//
|
|
// Created by Curtis Hard on 02/09/2014.
|
|
// Copyright (c) 2014 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "IJSVGNode.h"
|
|
|
|
@interface IJSVGForeignObject : IJSVGNode {
|
|
|
|
NSString * requiredExtension;
|
|
|
|
}
|
|
|
|
@property ( nonatomic, copy ) NSString * requiredExtension;
|
|
|
|
@end
|