280north / cappuccino

Web Application Framework in JavaScript and Objective-J

This URL has Read+Write access

boucher (author)
Mon Nov 02 16:47:07 -0800 2009
commit  93c90274b5376b5c7ef0c9dea0c1ffcec4499ab7
tree    c1e8d95726cd11b873a89fc143ea104a0f436c03
parent  e8b1ff88461f8b4eb303e5435079f00b40159af2
cappuccino / Tools / nib2cib / NSArray.j
100644 41 lines (34 sloc) 1.071 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* NSArray.j
* nib2cib
*
* Created by Francisco Tolmasky.
* Copyright 2008, 280 North, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
 
@import <Foundation/CPObject.j>
 
 
@implementation NSArray : CPObject
{
}
 
- (id)initWithCoder:(CPCoder)aCoder
{
    return [aCoder decodeObjectForKey:@"NS.objects"];
}
 
@end
 
@implementation NSMutableArray : NSArray
{
}
@end