arq_restore/GoogleDriveTargetConnection.h
2014-07-28 14:20:07 -04:00

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