1 /*-
2 # X-BASED DINOSAUR CUBE
3 #
4 #  Dino3d.h
5 #
6 ###
7 #
8 #  Copyright (c) 1995 - 99	David Albert Bagley, bagleyd@tux.org
9 #
10 #                   All Rights Reserved
11 #
12 #  Permission to use, copy, modify, and distribute this software and
13 #  its documentation for any purpose and without fee is hereby granted,
14 #  provided that the above copyright notice appear in all copies and
15 #  that both that copyright notice and this permission notice appear in
16 #  supporting documentation, and that the name of the author not be
17 #  used in advertising or publicity pertaining to distribution of the
18 #  software without specific, written prior permission.
19 #
20 #  This program is distributed in the hope that it will be "playable",
21 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
22 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 #
24 */
25 
26 /* Public header file for Dino3d */
27 
28 #ifndef _XtDino3d_h
29 #define _XtDino3d_h
30 
31 /***********************************************************************
32  *
33  * Dino3d Widget
34  *
35  ***********************************************************************/
36 
37 #include "Dino.h"
38 
39 typedef struct _Dino3DClassRec *Dino3DWidgetClass;
40 typedef struct _Dino3DRec *Dino3DWidget;
41 
42 extern WidgetClass dino3dWidgetClass;
43 
44 #endif /* _XtDino3d_h */
45 /* DON'T ADD STUFF AFTER THIS #endif */
46