filesbox/app/filesbox_ios/FilesBox/Pods/ASIHTTPRequest/Classes/CloudFiles/ASICloudFilesContainerXMLPa...

32 lines
774 B
C
Raw Normal View History

2023-09-20 08:37:14 +00:00
//
// 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