X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/3269e9dfcbe058cef9e1da01ab45a93f07ee2be1..a95939f73c92bc42ae05d4585b57c6b95126601a:/ITStringMacResource.m diff --git a/ITStringMacResource.m b/ITStringMacResource.m new file mode 100755 index 0000000..3cc887b --- /dev/null +++ b/ITStringMacResource.m @@ -0,0 +1,26 @@ +// +// ITStringMacResource.m +// ITKit +// +// Created by Joseph Spiros on Thu Dec 25 2003. +// Copyright (c) 2003 __MyCompanyName__. All rights reserved. +// + +#import "ITStringMacResource.h" + + +@implementation ITStringMacResource + ++ (void)load { + [ITMacResource _registerClass:self forType:'STR ']; +} + +- (Class)nativeRepresentationClass { + return [NSString class]; +} + +- (id)nativeRepresentation { + return @"Not Implemented Yet"; +} + +@end