Fixed the AppleEvent tools to actually work.
[ITFoundation.git] / ITXMLNode.h
1 #import <Foundation/Foundation.h>
2
3 @interface ITXMLNode : NSObject
4 {
5     NSMutableArray *_children;
6     NSString *_name;
7 }
8
9 //- (id)initWithSomeStuffHere;
10 //+ (ITXMLNode *)nodeWithSomeStuffHere;
11
12 //Accessors that I don't know the names of...
13 - (void)name;
14 - (NSData *)data;
15
16 - (NSArray *)children;
17 - (void)addChild:(ITXMLNode *)aChild;
18 @end