mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
20 lines
339 B
Objective-C
20 lines
339 B
Objective-C
//
|
|
// SVGParserLinearGradient.h
|
|
// SVGPad
|
|
//
|
|
// Created by Kevin Stich on 1/31/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "SVGKParserSVG.h"
|
|
|
|
|
|
@class SVGGradientElement;
|
|
|
|
@interface SVGKParserGradient : SVGKParserSVG {
|
|
SVGGradientElement *currentElement;
|
|
}
|
|
|
|
@end
|