arq_restore/BlobKeyIO.h
2013-03-09 08:46:38 -05:00

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