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.m | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.m b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.m new file mode 100755 index 0000000..eab6194 --- /dev/null +++ b/screendisplay/Pods/ASIHTTPRequest/Classes/S3/ASIS3Bucket.m @@ -0,0 +1,40 @@ +// +// ASIS3Bucket.m +// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest +// +// Created by Ben Copsey on 16/03/2010. +// Copyright 2010 All-Seeing Interactive. All rights reserved. +// + +#import "ASIS3Bucket.h" + + +@implementation ASIS3Bucket + ++ (id)bucketWithOwnerID:(NSString *)anOwnerID ownerName:(NSString *)anOwnerName +{ + ASIS3Bucket *bucket = [[[self alloc] init] autorelease]; + [bucket setOwnerID:anOwnerID]; + [bucket setOwnerName:anOwnerName]; + return bucket; +} + +- (void)dealloc +{ + [name release]; + [creationDate release]; + [ownerID release]; + [ownerName release]; + [super dealloc]; +} + +- (NSString *)description +{ + return [NSString stringWithFormat:@"Name: %@ creationDate: %@ ownerID: %@ ownerName: %@",[self name],[self creationDate],[self ownerID],[self ownerName]]; +} + +@synthesize name; +@synthesize creationDate; +@synthesize ownerID; +@synthesize ownerName; +@end -- Gitblit v1.8.0