repo.or.cz
/
cocotron.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git]
/
QuartzCore
/
CABasicAnimation.m
blob
b088b6b8c300579578a55f75be8b9b2acbc577ad
1
#import <QuartzCore/CABasicAnimation.h>
2
3
@implementation CABasicAnimation
4
5
-fromValue {
6
return _fromValue;
7
}
8
9
-(void)setFromValue:value {
10
value=[value retain];
11
[_fromValue release];
12
_fromValue=value;
13
}
14
15
-toValue {
16
return _toValue;
17
}
18
19
-(void)setToValue:value {
20
value=[value retain];
21
[_toValue release];
22
_toValue=value;
23
}
24
25
-byValue {
26
return _byValue;
27
}
28
29
-(void)setByValue:value {
30
value=[value retain];
31
[_byValue release];
32
_byValue=value;
33
}
34
35
@end