mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
14 lines
417 B
Objective-C
14 lines
417 B
Objective-C
#import "SVGAngle.h"
|
|
|
|
@implementation SVGAngle
|
|
|
|
@synthesize unitType;
|
|
@synthesize value;
|
|
@synthesize valueInSpecifiedUnits;
|
|
@synthesize valueAsString;
|
|
|
|
-(void) newValueSpecifiedUnits:(SVGKAngleType) unitType valueInSpecifiedUnits:(float) valueInSpecifiedUnits { NSAssert( FALSE, @"Not implemented yet" ); }
|
|
-(void) convertToSpecifiedUnits:(SVGKAngleType) unitType { NSAssert( FALSE, @"Not implemented yet" ); }
|
|
|
|
@end
|