Delete queue.*.
[ITFoundation.git] / ITXMLNode.h
1 /*
2  *      ITFoundation
3  *      ITXMLNode.h
4  *
5  *      Copyright (c) 2005 by iThink Software.
6  *      All Rights Reserved.
7  *
8  *      $Id$
9  *
10  */
11
12 #import <Foundation/Foundation.h>
13
14 @interface ITXMLNode : NSObject {
15         NSMutableArray *_children;
16         NSString *_name;
17 }
18
19 //- (id)initWithSomeStuffHere;
20 //+ (ITXMLNode *)nodeWithSomeStuffHere;
21
22 //Accessors that I don't know the names of...
23 - (void)name;
24 - (NSData *)data;
25
26 - (NSArray *)children;
27 - (void)addChild:(ITXMLNode *)aChild;
28
29 @end