mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-02 10:35:53 +00:00
19 lines
348 B
Objective-C
19 lines
348 B
Objective-C
//
|
|
// ArqRestoreCommand.h
|
|
// arq_restore
|
|
//
|
|
// Created by Stefan Reitshamer on 7/25/14.
|
|
//
|
|
//
|
|
|
|
#import "S3RestorerDelegate.h"
|
|
@class Target;
|
|
|
|
|
|
@interface ArqRestoreCommand : NSObject <S3RestorerDelegate> {
|
|
Target *target;
|
|
}
|
|
|
|
- (NSString *)errorDomain;
|
|
- (BOOL)executeWithArgc:(int)argc argv:(const char **)argv error:(NSError **)error;
|
|
@end
|