Adding some new classes that ease access of Carbon/Mac-style resource files/forks.
[ITKit.git] / ITStringMacResource.m
diff --git a/ITStringMacResource.m b/ITStringMacResource.m
new file mode 100755 (executable)
index 0000000..3cc887b
--- /dev/null
@@ -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