From 21d3023a9b7b6aff68c1170e345951396b1c6cfd Mon Sep 17 00:00:00 2001 From: 单军华 Date: Tue, 31 Jul 2018 13:35:21 +0800 Subject: [PATCH] no message --- screendisplay/Pods/ASIHTTPRequest/Classes/CloudFiles/ASICloudFilesContainerXMLParserDelegate.h | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/ASIHTTPRequest/Classes/CloudFiles/ASICloudFilesContainerXMLParserDelegate.h b/screendisplay/Pods/ASIHTTPRequest/Classes/CloudFiles/ASICloudFilesContainerXMLParserDelegate.h new file mode 100755 index 0000000..33286c9 --- /dev/null +++ b/screendisplay/Pods/ASIHTTPRequest/Classes/CloudFiles/ASICloudFilesContainerXMLParserDelegate.h @@ -0,0 +1,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 -- Gitblit v1.8.0