From a8297afeff989f07a0d54dadfec7b34799a9c5dd Mon Sep 17 00:00:00 2001
From: 单军华
Date: Wed, 11 Jul 2018 11:40:39 +0800
Subject: [PATCH] 打包配置

---
 screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3ServiceRequest.h |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3ServiceRequest.h b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3ServiceRequest.h
new file mode 100755
index 0000000..bd3e236
--- /dev/null
+++ b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3ServiceRequest.h
@@ -0,0 +1,31 @@
+//
+//  ASIS3ServiceRequest.h
+//  Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
+//
+//  Created by Ben Copsey on 16/03/2010.
+//  Copyright 2010 All-Seeing Interactive. All rights reserved.
+//
+//  Create an ASIS3ServiceRequest to obtain a list of your buckets
+
+#import <Foundation/Foundation.h>
+#import "ASIS3Request.h"
+
+@class ASIS3Bucket;
+
+@interface ASIS3ServiceRequest : ASIS3Request {
+	
+	// Internally used while parsing the response
+	ASIS3Bucket *currentBucket;
+	NSString *ownerName;
+	NSString *ownerID;
+	
+	// A list of the buckets stored on S3 for this account
+	NSMutableArray *buckets;
+}
+
+// Perform a GET request on the S3 service
+// This will fetch a list of the buckets attached to the S3 account
++ (id)serviceRequest;
+
+@property (retain, readonly) NSMutableArray *buckets;
+@end

--
Gitblit v1.8.0