// // testProject.m // TEST2 // // Created by matthew on Wed Apr 09 2003. // Copyright (c) 2003 __MyCompanyName__. All rights reserved. // #import "testProject.h" @implementation testProject - (NSString *)windowNibName { // Implement this to return a nib to load OR implement -makeWindowControllers to manually create your controllers. return @"myProject"; } - (NSData *)dataRepresentationOfType:(NSString *)type { // Implement to provide a persistent data representation of your document OR remove this and implement the file-wrapper or file path based save methods. return nil; } - (BOOL)loadDataRepresentation:(NSData *)data ofType:(NSString *)type { // Implement to load a persistent data representation of your document OR remove this and implement the file-wrapper or file path based load methods. return YES; } @end