Licensing ITMac under the GNU Lesser General Public License version 2.1.
[ITMac.git] / ITStringMacResource.m
1 #import "ITStringMacResource.h"
2
3 @implementation ITStringMacResource
4
5 + (NSArray *)supportedResourceTypes {
6         return [NSArray arrayWithObject:[NSString stringWithFourCharCode:'STR ']];
7 }
8
9 - (Class)nativeRepresentationClass {
10         return [NSString class];
11 }
12
13 - (id)nativeRepresentation {
14         return nil;
15 }
16
17 @end