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

21 lines
417 B
Objective-C

//
// S3TargetConnection.h
// Arq
//
// Created by Stefan Reitshamer on 4/21/14.
// Copyright (c) 2014 Stefan Reitshamer. All rights reserved.
//
#import "TargetConnection.h"
@class BaseTargetConnection;
@class Target;
@class S3RemoteFS;
@interface S3TargetConnection : NSObject <TargetConnection> {
S3RemoteFS *s3RemoteFS;
BaseTargetConnection *base;
}
- (id)initWithTarget:(Target *)theTarget;
@end