2004-01-06 Manuel Guesdon <mguesdon@orange-concept.com>

* Headers/Foundation/NSArray.h/.m: added -setValue:forKey:
	      and -valueForKey: to comply to Mac OS X v10.3 and
		  later documentation.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18322 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2004-01-06 19:43:29 +00:00
parent ba01b14ce2
commit 11b53e1b9f
3 changed files with 75 additions and 0 deletions

View file

@ -101,6 +101,7 @@
- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)useAuxiliaryFile;
#ifndef STRICT_OPENSTEP
- (BOOL) writeToURL: (NSURL*)url atomically: (BOOL)useAuxiliaryFile;
- (id) valueForKey: (NSString*)key;
#endif
@end
@ -142,6 +143,10 @@
context: (void*)context;
- (void) sortUsingSelector: (SEL)comparator;
#ifndef STRICT_OPENSTEP
- (void) setValue: (id)value forKey: (NSString*)key;
#endif
@end
@interface NSArray (GNUstep)