mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Uncomment -keyEnumerator and -objectEnumerator. Fix indentation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@414 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
172b84f5c9
commit
8e1a5f277b
1 changed files with 29 additions and 28 deletions
|
@ -23,22 +23,23 @@
|
|||
|
||||
#include <objects/Dictionary.h>
|
||||
|
||||
@class NSArray;
|
||||
@class NSString;
|
||||
@class NSArray, NSString, NSEnumerator;
|
||||
|
||||
@interface NSDictionary : Dictionary <NSCopying>
|
||||
@interface NSDictionary : NSObject <NSCopying>
|
||||
|
||||
+ allocWithZone: (NSZone*)zone;
|
||||
+ dictionary;
|
||||
+ dictionaryWithObjects:(id *)objects forKeys:(NSString **)keys count:(unsigned)count;
|
||||
+ dictionaryWithObjects: (id*)objects forKeys: (NSString**)keys
|
||||
count: (unsigned)count;
|
||||
+ dictionaryWithObjects: (NSArray*)objects forKeys: (NSArray*)keys;
|
||||
- initWithObjects:(id *)objects forKeys:(NSString **)keys count:(unsigned)count;
|
||||
- initWithObjects: (id*)objects forKeys: (NSString**)keys
|
||||
count: (unsigned)count;
|
||||
- initWithDictionary: (NSDictionary*)otherDictionary;
|
||||
- initWithContentsOfFile: (NSString*)path;
|
||||
|
||||
- (unsigned) count;
|
||||
- objectForKey: (NSString*)aKey;
|
||||
//- (NSEnumerator *)keyEnumerator;
|
||||
- (NSEnumerator*) keyEnumerator;
|
||||
- (BOOL) isEqualToDictionary: (NSDictionary*)other;
|
||||
- (NSString*) description;
|
||||
- (NSString*) descriptionWithIndent: (unsigned)level;
|
||||
|
@ -46,7 +47,7 @@
|
|||
- (NSArray*) allValues;
|
||||
- (NSArray*) allKeysForObject: anObject;
|
||||
- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)useAuxiliaryFile;
|
||||
//- (NSEnumerator *)objectEnumerator;
|
||||
- (NSEnumerator*) objectEnumerator;
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue