ftp.nice.ch/pub/next/developer/objc/appkit/NMK.s.tar.gz#/NMK/Historian/HistogramView.h

This is HistogramView.h in view mode; [Download] [Up]

/***** HistogramView.h -- histogram display object interface
	NeXTstep Measurement Kit
	by Alex Meyer <ameyer@phoenix.Princeton.EDU>
	for computer science senior thesis
	19 April 1992 -- created
*****/

#import <appkit/View.h>

@interface HistogramView : View
{
	int numData;	/* array size */
	unsigned largest;		/* always >= 0.0 */
	unsigned smallest;	/* always <= 0.0 */
	unsigned *data;
}

- copyInNum:(int)num
	data:(unsigned *)ptr;

@end

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