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 Frith-MacDonald 1998-08-01 21:27:26 +00:00
parent 06f92e2b34
commit 9b81235784

View file

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