darling-cocotron/QuartzCore/CABasicAnimation.m
Christopher Lloyd bab2e55385 QuartzCore work
2010-10-21 21:21:17 -04:00

36 lines
480 B
Objective-C

#import <QuartzCore/CABasicAnimation.h>
@implementation CABasicAnimation
-fromValue {
return _fromValue;
}
-(void)setFromValue:value {
value=[value retain];
[_fromValue release];
_fromValue=value;
}
-toValue {
return _toValue;
}
-(void)setToValue:value {
value=[value retain];
[_toValue release];
_toValue=value;
}
-byValue {
return _byValue;
}
-(void)setByValue:value {
value=[value retain];
[_byValue release];
_byValue=value;
}
@end