arq_restore/cocoastack/io/NSErrorIO.h
2014-07-28 14:20:07 -04:00

18 lines
433 B
Objective-C

//
// NSErrorIO.h
// Arq
//
// Created by Stefan Reitshamer on 6/5/13.
// Copyright (c) 2013 Stefan Reitshamer. All rights reserved.
//
@class BufferedInputStream;
@class BufferedOutputStream;
@interface NSErrorIO : NSObject {
}
+ (BOOL)write:(NSError *)theError to:(BufferedOutputStream *)theBOS error:(NSError **)error;
+ (BOOL)read:(NSError **)theError from:(BufferedInputStream *)theBIS error:(NSError **)error;
@end