Files
IJSVG/source/IJSVGText.m
2019-12-02 21:05:12 +00:00

29 lines
436 B
Objective-C

//
// IJSVGText.m
// IJSVGExample
//
// Created by Curtis Hard on 01/01/2017.
// Copyright © 2017 Curtis Hard. All rights reserved.
//
#import "IJSVGText.h"
@implementation IJSVGText
@synthesize text;
- (void)dealloc
{
(void)([text release]), text = nil;
[super dealloc];
}
- (IJSVGText*)copyWithZone:(NSZone*)zone
{
IJSVGText* node = [super copyWithZone:zone];
node.text = self.text;
return node;
}
@end