arq_restore/cocoastack/googledrive/GoogleDriveFactory.h
2014-07-28 14:20:07 -04:00

23 lines
587 B
Objective-C

//
// GoogleDriveFactory.h
// Arq
//
// Created by Stefan Reitshamer on 7/17/14.
// Copyright (c) 2014 Stefan Reitshamer. All rights reserved.
//
#import "CWLSynthesizeSingleton.h"
#import "GoogleDrive.h"
@interface GoogleDriveFactory : NSObject <GoogleDriveDelegate> {
NSMutableDictionary *accessTokensByRefreshToken;
NSMutableDictionary *folderIdDictionariesByRefreshToken;
NSLock *lock;
}
CWL_DECLARE_SINGLETON_FOR_CLASS(GoogleDriveFactory);
- (GoogleDrive *)googleDriveWithEmailAddress:(NSString *)theEmailAddress refreshToken:(NSString *)theRefreshToken;
@end