Organized the project some. Added some framework XML classes.
[ITFoundation.git] / ITXMLNode.h
diff --git a/ITXMLNode.h b/ITXMLNode.h
new file mode 100755 (executable)
index 0000000..226735a
--- /dev/null
@@ -0,0 +1,18 @@
+#import <Foundation/Foundation.h>
+
+@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