1 /************************************************************************/
2 /*									*/
3 /*  Map numbered attributes in one document to those in anaother one.	*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef		DOC_DOCUMENT_ATTRIBUTE_MAP_H
8 #   define		DOC_DOCUMENT_ATTRIBUTE_MAP_H
9 
10 typedef struct DocumentAttributeMap
11     {
12     int *			damFontMap;
13     int *			damColorMap;
14     int *			damRulerMap;
15     int *			damBorderMap;
16     int *			damFrameMap;
17     int *			damShadingMap;
18     int *			damCellMap;
19     int *			damListStyleMap;
20     } DocumentAttributeMap;
21 
22 /************************************************************************/
23 /*									*/
24 /*  Routine Declarations.						*/
25 /*									*/
26 /************************************************************************/
27 
28 extern void docInitDocumentAttributeMap(	DocumentAttributeMap *	dam );
29 extern void docCleanDocumentAttributeMap(	DocumentAttributeMap *	dam );
30 
31 #   endif	/*	DOC_DOCUMENT_ATTRIBUTE_MAP_H	*/
32