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