1 /* Fo
2  * fo-footnote-private.h: Structures private to Footnote formatting object
3  *
4  * Copyright (C) 2001 Sun Microsystems
5  * Copyright (C) 2007 Menteith Consulting Ltd
6  *
7  * See COPYING for the status of this software.
8  */
9 
10 #include <libfo/fo/fo-fo.h>
11 #include <libfo/fo/fo-fo-private.h>
12 #include <libfo/fo/fo-footnote.h>
13 
14 struct _FoFootnote
15 {
16   FoFo parent_instance;
17   FoProperty *role;
18   FoProperty *source_document;
19 };
20 
21 struct _FoFootnoteClass
22 {
23   FoFoClass parent_class;
24 };
25