([Dictionary initWithType:keyType:capacity]): Declare it.

([Dictionary initWithType:capacity]): Likewise.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@468 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-06-29 02:06:19 +00:00
parent 88c0c700b5
commit 830129d4bf
2 changed files with 12 additions and 2 deletions

View file

@ -1,5 +1,5 @@
/* Interface for Objective-C Dictionary collection object
Copyright (C) 1993,1994 Free Software Foundation, Inc.
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: May 1993
@ -33,6 +33,11 @@
int (*_comparison_function)(elt,elt);
}
- initWithType: (const char *)contentEncoding
keyType: (const char *)keyEncoding
capacity: (unsigned)aCapacity;
- initWithType: (const char *)contentEncoding
capacity: (unsigned)aCapacity;
@end

View file

@ -1,5 +1,5 @@
/* Interface for Objective-C Dictionary collection object
Copyright (C) 1993,1994 Free Software Foundation, Inc.
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: May 1993
@ -33,6 +33,11 @@
int (*_comparison_function)(elt,elt);
}
- initWithType: (const char *)contentEncoding
keyType: (const char *)keyEncoding
capacity: (unsigned)aCapacity;
- initWithType: (const char *)contentEncoding
capacity: (unsigned)aCapacity;
@end