Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
DBDeltaEntry.h
Go to the documentation of this file.
1 //
2 // DBDeltaEntry.h
3 // DropboxSDK
4 //
5 // Created by Brian Smith on 3/25/12.
6 // Copyright (c) 2012 Dropbox. All rights reserved.
7 //
8 
9 #import "DBMetadata.h"
10 
11 @interface DBDeltaEntry : NSObject <NSCoding> {
12  NSString *lowercasePath;
14 }
15 
16 - (id)initWithArray:(NSArray *)array;
17 
18 @property (nonatomic, readonly) NSString *lowercasePath;
19 @property (nonatomic, readonly) DBMetadata *metadata; // nil if file has been deleted
20 
21 @end