mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
20 lines
389 B
Objective-C
20 lines
389 B
Objective-C
//
|
|
// ReflogEntry.h
|
|
// arq_restore
|
|
//
|
|
// Created by Stefan Reitshamer on 11/20/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
|
|
@class BlobKey;
|
|
|
|
@interface ReflogEntry : NSObject {
|
|
BlobKey *oldHeadBlobKey;
|
|
BlobKey *newHeadBlobKey;
|
|
}
|
|
- (id)initWithData:(NSData *)theData error:(NSError **)error;
|
|
|
|
- (BlobKey *)oldHeadBlobKey;
|
|
- (BlobKey *)newHeadBlobKey;
|
|
@end
|