mirror of
https://github.com/drewmccormack/ensembles.git
synced 2026-03-03 18:23:18 +01:00
33 lines
798 B
Objective-C
33 lines
798 B
Objective-C
//
|
|
// CDEDropboxCloudFileSystem.h
|
|
// Test App iOS
|
|
//
|
|
// Created by Drew McCormack on 4/12/13.
|
|
// Copyright (c) 2013 The Mental Faculty B.V. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
#import "CDECloudFileSystem.h"
|
|
#import "DBRestClient+OSX.h"
|
|
|
|
@class CDEDropboxCloudFileSystem;
|
|
|
|
|
|
@protocol CDEDropboxCloudFileSystemDelegate <NSObject>
|
|
|
|
- (void)linkSessionForDropboxCloudFileSystem:(CDEDropboxCloudFileSystem *)fileSystem completion:(CDECompletionBlock)completion;
|
|
|
|
@end
|
|
|
|
|
|
@interface CDEDropboxCloudFileSystem : NSObject <CDECloudFileSystem, DBRestClientDelegate>
|
|
|
|
@property (readonly) DBSession *session;
|
|
@property (readwrite, weak) id <CDEDropboxCloudFileSystemDelegate> delegate;
|
|
|
|
- (instancetype)initWithSession:(DBSession *)session;
|
|
|
|
@end
|