#ifndef _XawPerson_h
#define _XawPerson_h

/***********************************************************************
 *
 * Person Widget
 *
 ***********************************************************************/

#include <X11/Xaw/Command.h>

#ifndef lint
static char rcsidh[] = "";
#endif /* lint */

/*
 * These should be in StringDefs.h but aren't so we will define
 * them here if they are needed.
 */


#define XtCWidget "Widget"
#define XtCPose "Pose"

#define XtRWidget "Widget"

#define XtNpose "pose"

extern WidgetClass               personWidgetClass;

typedef struct _PersonClassRec   *PersonWidgetClass;
typedef struct _PersonRec        *PersonWidget;

#define	PERSON_SITTING	0
#define	PERSON_REQUEST	1
#define	PERSON_SPEAKER	2

#endif /* _XawPerson_h */
/* DON'T ADD STUFF AFTER THIS */
