1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| //
| // ASICloudFilesObject.m
| //
| // Created by Michael Mayo on 1/7/10.
| //
|
| #import "ASICloudFilesObject.h"
|
|
| @implementation ASICloudFilesObject
|
| @synthesize name, hash, bytes, contentType, lastModified, data, metadata;
|
| + (id)object {
| ASICloudFilesObject *object = [[[self alloc] init] autorelease];
| return object;
| }
|
| -(void)dealloc {
| [name release];
| [hash release];
| [contentType release];
| [lastModified release];
| [data release];
| [metadata release];
| [super dealloc];
| }
|
| @end
|
|