ftp.nice.ch/pub/next/developer/resources/classes/UHInspector.1.2.N.bs.tar.gz#/UHInspector_1.2/InspectorSimpleDemo/Gain.m

This is Gain.m in view mode; [Download] [Up]

#import "Gain.h"

@implementation Gain
 
- (double)gain {return gain;}

- setGain:(double)value{
	gain=value;
	return self;
}

/*
- (const char *)getInspectorClassName
{
	return "GainInspector";
}
*/

- setLabel:(const char *)aString
{
	if(label)NXZoneFree([self zone],label);
	label=NXCopyStringBufferFromZone(aString,[self zone]);
	return self;
}

- (const char *)label {return label;}

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.