// // CDEDropboxCloudFileSystem.h // // Created by Drew McCormack on 4/12/13. // Copyright (c) 2013 The Mental Faculty B.V. All rights reserved. // #import #import #import #import "DBRestClient.h" @class CDEDropboxCloudFileSystem; @protocol CDEDropboxCloudFileSystemDelegate - (void)linkSessionForDropboxCloudFileSystem:(CDEDropboxCloudFileSystem *)fileSystem completion:(CDECompletionBlock)completion; @end @interface CDEDropboxCloudFileSystem : NSObject @property (readonly) DBSession *session; @property (readwrite, weak) id delegate; - (instancetype)initWithSession:(DBSession *)session; @end