git.ithinksw.org
/
ITFoundation.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Enabling garbage collection support.
[ITFoundation.git]
/
ITXMLNode.m
1
#import "ITXMLNode.h"
2
3
@implementation ITXMLNode
4
5
- (NSArray *)children {
6
return [NSArray arrayWithArray:_children];
7
}
8
9
- (void)addChild:(ITXMLNode *)aChild {
10
[_children addObject:aChild];
11
}
12
13
@end