what
authorAlexander Strange <astrange@ithinksw.com>
Mon, 29 Mar 2004 01:49:32 +0000 (01:49 +0000)
committerAlexander Strange <astrange@ithinksw.com>
Mon, 29 Mar 2004 01:49:32 +0000 (01:49 +0000)
ITXMLParser.h
ITXMLParser.m

index 63a6238..f1fe21c 100755 (executable)
@@ -1,6 +1,5 @@
 #import <Foundation/Foundation.h>
-
-@class ITXMLNode;
+#import "ITXMLNode.h"
 
 @interface ITXMLParser : NSObject
 {
index f96c384..b1931a9 100755 (executable)
@@ -1,5 +1,4 @@
-#import "ITXMLParser.m"
-#import "ITXMLNode.m"
+#import "ITXMLParser.h"
 
 @implementation ITXMLParser
 
@@ -15,7 +14,7 @@
 {
     if ( (self = [super init]) ) {
         _source = [aString copy];
-        _XMLPathSeparator = @"/"
+        _XMLPathSeparator = @"/";
     }
 }