arq_restore/PackIndexWriter.h
Stefan Reitshamer cbe20c007e Merged in many changes from Arq mainline development.
(Sorry for the lame commit comment).
2010-08-19 13:25:23 -04:00

18 lines
404 B
Objective-C

//
// PackIndexWriter.h
// Arq
//
// Created by Stefan Reitshamer on 3/3/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class DiskPack;
@interface PackIndexWriter : NSObject {
DiskPack *diskPack;
NSString *destination;
}
- (id)initWithPack:(DiskPack *)theDiskPack destination:(NSString *)theDestination;
- (BOOL)writeIndex:(NSError **)error;
@end