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

22 lines
525 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;
uid_t targetUID;
gid_t targetGID;
}
- (id)initWithPack:(DiskPack *)theDiskPack destination:(NSString *)theDestination
targetUID:(uid_t)theTargetUID
targetGID:(gid_t)theTargetGID;
- (BOOL)writeIndex:(NSError **)error;
@end