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