mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-24 14:37:45 +00:00
23 lines
602 B
Objective-C
23 lines
602 B
Objective-C
//
|
|
// PackIndexEntry.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 12/30/09.
|
|
// Copyright 2009 Haystack Software. All rights reserved.
|
|
//
|
|
|
|
@class PackId;
|
|
|
|
|
|
@interface PackIndexEntry : NSObject <NSCopying> {
|
|
PackId *packId;
|
|
unsigned long long offset;
|
|
unsigned long long dataLength;
|
|
NSString *objectSHA1;
|
|
}
|
|
- (id)initWithPackId:(PackId *)thePackId offset:(unsigned long long)theOffset dataLength:(unsigned long long)theDataLength objectSHA1:(NSString *)theObjectSHA1;
|
|
- (PackId *)packId;
|
|
- (unsigned long long)offset;
|
|
- (unsigned long long)dataLength;
|
|
- (NSString *)objectSHA1;
|
|
@end
|