1 /*******************************************************************
2  FILE:		Value.h
3  CONTENTS:	Public header file for the Value widget class.
4  AUTHOR:	Paul D. Johnston
5  HISTORY:
6  Date		Action
7  ---------	------------------------------------
8  5/23/92	Changed the widget class name so that it is preceded
9 		by 'xc' with the first major word capitalized.
10  3/11/92	Created.
11 
12 ********************************************************************/
13 
14 #ifndef VALUE_H
15 #define VALUE_H
16 
17 
18 
19 
20 /* Class record declarations */
21 
22 extern WidgetClass xcValueWidgetClass;
23 
24 typedef struct _ValueClassRec *ValueWidgetClass;
25 typedef struct _ValueRec *ValueWidget;
26 
27 
28 /* Widget class functions. */
29 extern float Correlate();
30 extern char *Print_value();
31 extern void Position_val();
32 
33 #endif /* VALUE_H */
34 
35