mirror of https://github.com/perkeep/perkeep.git
28 lines
501 B
Objective-C
28 lines
501 B
Objective-C
//
|
|
// LACamliFile.h
|
|
//
|
|
// Created by Nick O'Neill on 1/13/13.
|
|
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class ALAsset;
|
|
|
|
@interface LACamliFile : NSObject
|
|
|
|
@property ALAsset *asset;
|
|
@property NSMutableArray *allBlobs;
|
|
@property NSMutableArray *uploadMarks;
|
|
@property NSArray *allBlobRefs;
|
|
|
|
@property NSString *blobRef;
|
|
|
|
- (id)initWithAsset:(ALAsset *)asset;
|
|
- (NSArray *)blobsToUpload;
|
|
|
|
- (long long)size;
|
|
- (NSDate *)creation;
|
|
|
|
@end
|