mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
23 lines
613 B
Objective-C
23 lines
613 B
Objective-C
//
|
|
// PackIndexEntry.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 12/30/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PackIndexEntry : NSObject {
|
|
NSString *packSHA1;
|
|
unsigned long long offset;
|
|
unsigned long long dataLength;
|
|
NSString *objectSHA1;
|
|
}
|
|
- (id)initWithPackSHA1:(NSString *)thePackSHA1 offset:(unsigned long long)theOffset dataLength:(unsigned long long)theDataLength objectSHA1:(NSString *)theObjectSHA1;
|
|
- (NSString *)packSHA1;
|
|
- (unsigned long long)offset;
|
|
- (unsigned long long)dataLength;
|
|
- (NSString *)objectSHA1;
|
|
@end
|