123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <Foundation/Foundation.h>
- #import "OCFileDto.h"
- @interface OCXMLParser : NSObject <NSXMLParserDelegate>{
-
- NSMutableString *_xmlChars;
- NSMutableDictionary *_xmlBucket;
- NSMutableArray *_directoryList;
- OCFileDto *_currentFile;
- BOOL isNotFirstFileOfList;
-
- }
- @property(nonatomic,strong) NSMutableArray *directoryList;
- @property(nonatomic,strong) OCFileDto *currentFile;
- - (void)initParserWithData: (NSData*)data;
- @end
|