github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/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  - (NSString *)name;
    26  - (NSDate*)creation;
    27  - (UIImage*)thumbnail;
    28  
    29  @end