This is GenericObject.m in view mode; [Download] [Up]
/************************************************** * SynthBuilder * Copyright 1993 Nick Porcaro All Rights Reserved **************************************************/ #import "GenericObject.h" #import <objc/hashtable.h> #import <libc.h> @implementation GenericObject - init { [super init]; return self; } - setName:(char *) name { return self; } - (char *) getName { return theName; } - setIconFile:(char*) aName { iconFile = aName; return self; } - (char *) getIconFile { return iconFile; } - edit { return self; } @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.