github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/ios-objc/photobackup/LACamliClient/LACamliFile.h (about)

     1  //
     2  //  LACamliFile.h
     3  //
     4  //  Created by Nick O'Neill on 1/13/13.
     5  //  Copyright (c) 2013 The Camlistore Authors. All rights reserved.
     6  //
     7  
     8  #import <Foundation/Foundation.h>
     9  
    10  @class ALAsset;
    11  
    12  @interface LACamliFile : NSObject
    13  
    14  @property ALAsset *asset;
    15  @property NSMutableArray *allBlobs;
    16  @property NSMutableArray *uploadMarks;
    17  @property NSArray *allBlobRefs;
    18  
    19  @property NSString *blobRef;
    20  
    21  - (id)initWithAsset:(ALAsset *)asset;
    22  - (NSArray *)blobsToUpload;
    23  
    24  - (long long)size;
    25  - (NSDate *)creation;
    26  
    27  @end