Licensing ITFoundation under the GNU Lesser General Public License version 2.1.
[ITFoundation.git] / ITXMLNode.h
old mode 100755 (executable)
new mode 100644 (file)
index 226735a..fd64dbc
@@ -1,9 +1,16 @@
+/*
+ *     ITFoundation
+ *     ITXMLNode.h
+ *
+ *     Copyright (c) 2005 iThink Software
+ *
+ */
+
 #import <Foundation/Foundation.h>
 
-@interface ITXMLNode : NSObject
-{
-    NSMutableArray *_children;
-    NSString *_name;
+@interface ITXMLNode : NSObject {
+       NSMutableArray *_children;
+       NSString *_name;
 }
 
 //- (id)initWithSomeStuffHere;
@@ -15,4 +22,5 @@
 
 - (NSArray *)children;
 - (void)addChild:(ITXMLNode *)aChild;
+
 @end
\ No newline at end of file