From b5b33107e9ebe80e31d8013058b27d574f08e990 Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Wed, 17 Apr 1996 13:07:55 +0000 Subject: [PATCH] Insert contents of git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1401 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/base/NSSet.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Headers/gnustep/base/NSSet.h b/Headers/gnustep/base/NSSet.h index 439e9b0a5..70fe2eb62 100644 --- a/Headers/gnustep/base/NSSet.h +++ b/Headers/gnustep/base/NSSet.h @@ -91,5 +91,26 @@ @end +#ifndef NO_GNUSTEP + +#include +#include + +/* Eventually we'll make a Constant version of this protocol. */ +@interface NSSet (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) +@end + +#endif /* NO_GNUSTEP */ #endif