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/S3/ASIS3Bucket.h |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.h b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.h
new file mode 100755
index 0000000..70e97cd
--- /dev/null
+++ b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.h
@@ -0,0 +1,34 @@
+//
+//  ASIS3Bucket.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.
+//
+//  Instances of this class represent buckets stored on S3
+//  ASIS3ServiceRequests return an array of ASIS3Buckets when you perform a service GET query
+//  You'll probably never need to create instances of ASIS3Bucket yourself
+
+#import <Foundation/Foundation.h>
+
+
+@interface ASIS3Bucket : NSObject {
+	
+	// The name of this bucket (will be unique throughout S3)
+	NSString *name;
+	
+	// The date this bucket was created
+	NSDate *creationDate;
+	
+	// Information about the owner of this bucket
+	NSString *ownerID;
+	NSString *ownerName;
+}
+
++ (id)bucketWithOwnerID:(NSString *)ownerID ownerName:(NSString *)ownerName;
+
+@property (retain) NSString *name;
+@property (retain) NSDate *creationDate;
+@property (retain) NSString *ownerID;
+@property (retain) NSString *ownerName;
+@end

--
Gitblit v1.8.0