mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
17 lines
382 B
Objective-C
17 lines
382 B
Objective-C
//
|
|
// BlobKeyIO.h
|
|
//
|
|
// Created by Stefan Reitshamer on 9/14/12.
|
|
//
|
|
//
|
|
|
|
@class BufferedInputStream;
|
|
@class BlobKey;
|
|
|
|
|
|
@interface BlobKeyIO : NSObject {
|
|
|
|
}
|
|
+ (void)write:(BlobKey *)theBlobKey to:(NSMutableData *)data;
|
|
+ (BOOL)read:(BlobKey **)theBlobKey from:(BufferedInputStream *)is treeVersion:(int)theTreeVersion compressed:(BOOL)isCompressed error:(NSError **)error;
|
|
@end
|