mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
22 lines
525 B
Objective-C
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
|