mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Implement NSCoding, add GSOrderedSet
This commit is contained in:
parent
56785613f1
commit
b61aa7bb96
1 changed files with 9 additions and 0 deletions
|
@ -546,6 +546,15 @@ static Class NSMutableOrderedSet_concrete_class;
|
|||
// Mutable Ordered Set
|
||||
@implementation NSMutableOrderedSet
|
||||
// Creating a Mutable Ordered Set
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [NSMutableSet class])
|
||||
{
|
||||
NSMutableOrderedSet_abstract_class = self;
|
||||
NSMutableOrderedSet_concrete_class = [GSMutableOrderedSet class];
|
||||
}
|
||||
}
|
||||
|
||||
+ (instancetype)orderedSetWithCapacity: (NSUInteger)capacity
|
||||
{
|
||||
return nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue