单军华
2018-07-11 acdf41fa3b32b628d9d7bba1f975060567dad3d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  ASICloudFilesContainerXMLParserDelegate.h
//
//  Created by Michael Mayo on 1/10/10.
//
 
#import "ASICloudFilesRequest.h"
 
#if !TARGET_OS_IPHONE || (TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_4_0)
#import "ASINSXMLParserCompat.h"
#endif
 
@class ASICloudFilesContainer;
 
@interface ASICloudFilesContainerXMLParserDelegate : NSObject <NSXMLParserDelegate> {
        
    NSMutableArray *containerObjects;
 
    // Internally used while parsing the response
    NSString *currentContent;
    NSString *currentElement;
    ASICloudFilesContainer *currentObject;
}
 
@property (retain) NSMutableArray *containerObjects;
 
@property (retain) NSString *currentElement;
@property (retain) NSString *currentContent;
@property (retain) ASICloudFilesContainer *currentObject;
 
@end