Another cleanup that doesn't seem to actually help
[ITKit.git] / ITStringMacResource.m
1 //
2 //  ITStringMacResource.m
3 //  ITKit
4 //
5 //  Created by Joseph Spiros on Thu Dec 25 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "ITStringMacResource.h"
10
11
12 @implementation ITStringMacResource
13
14 + (void)load {
15     [ITMacResource _registerClass:self forType:'STR '];
16 }
17
18 - (Class)nativeRepresentationClass {
19     return [NSString class];
20 }
21
22 - (id)nativeRepresentation {
23     return @"Not Implemented Yet";
24 }
25
26 @end