output: Add footnote support.
[pspp] / src / output / table-provider.h
index 97c264b4f2dc75ee17b789af89fda041c037ff1b..b64410c22703b33f7f4b98bc49a624f016d0dfbc 100644 (file)
@@ -26,7 +26,11 @@ struct cell_contents
 
     /* Exactly one of these must be nonnull. */
     char *text;                 /* A paragraph of text. */
-    struct table *table;        /* A table nested within the cell. */
+    struct table_item *table;   /* A table nested within the cell. */
+
+    /* Optional footnote(s). */
+    char **footnotes;
+    size_t n_footnotes;
   };
 
 /* A cell in a table. */