Files
cappuccino/Tools/nib2cib/NSArray.j
T
Francisco Ryan Tolmasky I a97bb72800 Initial commit.
Reviewed by francisco, ross and tom.
2008-09-04 03:52:20 -07:00

19 lines
233 B
Plaintext

import <Foundation/CPObject.j>
@implementation NSArray : CPObject
{
}
- (id)initWithCoder:(CPCoder)aCoder
{
return [aCoder _decodeArrayOfObjectsForKey:@"NS.objects"];
}
@end
@implementation NSMutableArray : NSArray
{
}
@end