mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
22 lines
463 B
Objective-C
22 lines
463 B
Objective-C
//
|
|
// GoogleDriveTargetConnection.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 7/18/14.
|
|
// Copyright (c) 2014 Stefan Reitshamer. All rights reserved.
|
|
//
|
|
|
|
#import "TargetConnection.h"
|
|
@class BaseTargetConnection;
|
|
@class Target;
|
|
@class GoogleDriveRemoteFS;
|
|
|
|
|
|
@interface GoogleDriveTargetConnection : NSObject <TargetConnection> {
|
|
GoogleDriveRemoteFS *googleDriveRemoteFS;
|
|
BaseTargetConnection *base;
|
|
}
|
|
|
|
- (id)initWithTarget:(Target *)theTarget;
|
|
|
|
@end
|