18 lines
375 B
Objective-C
18 lines
375 B
Objective-C
//
|
|
// IJSVGGradient.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 03/09/2014.
|
|
// Copyright (c) 2014 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "IJSVGGradient.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IJSVGLinearGradient : IJSVGGradient
|
|
|
|
+ (NSGradient*)parseGradient:(NSXMLElement*)element
|
|
gradient:(IJSVGLinearGradient*)aGradient;
|
|
|
|
@end
|