Fixed protocol conformance

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2891 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-08-01 21:27:26 +00:00
parent 8256a21d03
commit 18412bd701

View file

@ -30,14 +30,14 @@
@class NSString; @class NSString;
@interface NSArray : NSObject @interface NSArray : NSObject <NSCoding, NSCopying, NSMutableCopying>
- initWithObjects: (id*) objects count: (unsigned) count; - initWithObjects: (id*) objects count: (unsigned) count;
- (unsigned) count; - (unsigned) count;
- objectAtIndex: (unsigned)index; - objectAtIndex: (unsigned)index;
@end @end
@interface NSArray (NonCore) <NSCopying, NSMutableCopying> @interface NSArray (NonCore)
+ array; + array;
+ arrayWithArray: (NSArray*)array; + arrayWithArray: (NSArray*)array;