arq_restore/s3/LocalS3Signer.h
2011-08-16 15:19:44 -04:00

16 lines
320 B
Objective-C

//
// LocalS3Signer.h
// Arq
//
// Created by Stefan Reitshamer on 12/30/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "S3Signer.h"
@interface LocalS3Signer : NSObject <S3Signer> {
NSString *secretKey;
}
- (id)initWithSecretKey:(NSString *)theSecretKey;
@end