home *** CD-ROM | disk | FTP | other *** search
- /***** 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
-