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