mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Made NSArray conform to NSFastEnumeration. No idea why it wasn't already - it implements the methods...
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29173 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
301520a1d7
commit
a197590f24
1 changed files with 2 additions and 2 deletions
|
@ -28,17 +28,17 @@
|
||||||
|
|
||||||
#import <Foundation/NSObject.h>
|
#import <Foundation/NSObject.h>
|
||||||
#import <Foundation/NSRange.h>
|
#import <Foundation/NSRange.h>
|
||||||
|
#import <Foundation/NSEnumerator.h>
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@class NSEnumerator;
|
|
||||||
@class NSString;
|
@class NSString;
|
||||||
@class NSURL;
|
@class NSURL;
|
||||||
@class NSIndexSet;
|
@class NSIndexSet;
|
||||||
|
|
||||||
@interface NSArray : NSObject <NSCoding, NSCopying, NSMutableCopying>
|
@interface NSArray : NSObject <NSCoding, NSCopying, NSMutableCopying, NSFastEnumeration>
|
||||||
|
|
||||||
+ (id) array;
|
+ (id) array;
|
||||||
+ (id) arrayWithArray: (NSArray*)array;
|
+ (id) arrayWithArray: (NSArray*)array;
|
||||||
|
|
Loading…
Reference in a new issue