Moved method declarations from NSMutableSet to NSSet.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@655 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-10-30 01:52:20 +00:00
parent e11befe95e
commit 65a5bbc051

View file

@ -33,14 +33,16 @@
/* Eventually we'll make a Constant version of this protocol. */
@interface NSSet (GNU) <Collecting>
@end
@interface NSMutableSet (GNU)
/* These methods will be moved to NSMutableSet as soon as GNU's
collection objects are separated by mutability. */
+ (unsigned) defaultCapacity;
- initWithType: (const char *)contentEncoding
capacity: (unsigned)aCapacity;
@end
@interface NSMutableSet (GNU)
@end
@interface NSCountedSet (GNU) <Collecting>
@end