X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/d7bcfef7e59d8076d8eaffdaea4debd202e74e7b..ca611b500e4c5b95df5ef6d5c53d8c93b1e8e287:/ITXMLNode.h diff --git a/ITXMLNode.h b/ITXMLNode.h new file mode 100755 index 0000000..226735a --- /dev/null +++ b/ITXMLNode.h @@ -0,0 +1,18 @@ +#import + +@interface ITXMLNode : NSObject +{ + NSMutableArray *_children; + NSString *_name; +} + +//- (id)initWithSomeStuffHere; +//+ (ITXMLNode *)nodeWithSomeStuffHere; + +//Accessors that I don't know the names of... +- (void)name; +- (NSData *)data; + +- (NSArray *)children; +- (void)addChild:(ITXMLNode *)aChild; +@end \ No newline at end of file