mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
06f92e2b34
commit
9b81235784
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue