#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	POSE_SITTING		0
#define	POSE_REQUESTING		1
#define	POSE_SPEAKING		2
#define	POSE_SITTINGCHAIR	3
#define	POSE_SPEAKINGCHAIR	4

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