ASICloudFilesContainer.m
570 Bytes
//
// ASICloudFilesContainer.m
// iPhone
//
// Created by Michael Mayo on 1/7/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "ASICloudFilesContainer.h"
@implementation ASICloudFilesContainer
// regular container attributes
@synthesize name, count, bytes;
// CDN container attributes
@synthesize cdnEnabled, ttl, cdnURL, logRetention, referrerACL, useragentACL;
+ (id)container {
ASICloudFilesContainer *container = [[[self alloc] init] autorelease];
return container;
}
-(void) dealloc {
[name release];
[super dealloc];
}
@end