mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Add NSErrorRecoveryAttempting protocol.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25353 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f6a2012d43
commit
6a7732579b
3 changed files with 65 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-07-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/Foundation/NSErrorRecoveryAttempting.h: Add new file.
|
||||
* Source/GNUmakefile: Install this file.
|
||||
|
||||
2007-07-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSOutput.m: escape angle brackets in types of function
|
||||
|
|
59
Headers/Foundation/NSErrorRecoveryAttempting.h
Normal file
59
Headers/Foundation/NSErrorRecoveryAttempting.h
Normal file
|
@ -0,0 +1,59 @@
|
|||
/** Interface for NSErrorRecoveryAttempting for GNUStep
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Fred Kiefer <fredkiefer@gmx.de>
|
||||
Date: July 2007
|
||||
|
||||
This file is part of the GNUstep Base Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02111 USA.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef __NSErrorRecoveryAttempting_h_GNUSTEP_BASE_INCLUDE
|
||||
#define __NSErrorRecoveryAttempting_h_GNUSTEP_BASE_INCLUDE
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4, GS_API_LATEST)
|
||||
|
||||
#import <Foundation/NSObject.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* These methods define the informal error recovery protocol
|
||||
*/
|
||||
@interface NSObject (NSErrorRecoveryAttempting)
|
||||
|
||||
- (BOOL) attemptRecoveryFromError: (NSError*)error
|
||||
optionIndex: (unsigned int)recoveryOptionIndex;
|
||||
- (void) attemptRecoveryFromError: (NSError*)error
|
||||
optionIndex: (unsigned int)recoveryOptionIndex
|
||||
delegate: (id)delegate
|
||||
didRecoverSelector: (SEL)didRecoverSelector
|
||||
contextInfo: (void*)contextInfo;
|
||||
|
||||
@end
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __NSErrorRecoveryAttempting_h_GNUSTEP_BASE_INCLUDE*/
|
|
@ -320,6 +320,7 @@ NSDistributedLock.h \
|
|||
NSDistributedNotificationCenter.h \
|
||||
NSEnumerator.h \
|
||||
NSError.h \
|
||||
NSErrorRecoveryAttempting.h \
|
||||
NSException.h \
|
||||
NSExpression.h \
|
||||
NSFileHandle.h \
|
||||
|
|
Loading…
Reference in a new issue