mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +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
|
// Mutable Ordered Set
|
||||||
@implementation NSMutableOrderedSet
|
@implementation NSMutableOrderedSet
|
||||||
// Creating a Mutable Ordered Set
|
// Creating a Mutable Ordered Set
|
||||||
|
+ (void) initialize
|
||||||
|
{
|
||||||
|
if (self == [NSMutableSet class])
|
||||||
|
{
|
||||||
|
NSMutableOrderedSet_abstract_class = self;
|
||||||
|
NSMutableOrderedSet_concrete_class = [GSMutableOrderedSet class];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
+ (instancetype)orderedSetWithCapacity: (NSUInteger)capacity
|
+ (instancetype)orderedSetWithCapacity: (NSUInteger)capacity
|
||||||
{
|
{
|
||||||
return nil;
|
return nil;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue