pivot-table: Make struct pivot_cell public.
[pspp] / src / output / pivot-table.h
index d2affc86fa58bd63f472db7d898b11a17b46437d..8006adaf00f851d61f04117bbcfdb4937dd263b1 100644 (file)
@@ -717,5 +717,13 @@ struct pivot_argument
   };
 
 void pivot_argument_uninit (struct pivot_argument *);
+\f
+/* One piece of data within a pivot table. */
+struct pivot_cell
+  {
+    struct hmap_node hmap_node; /* In struct pivot_table's 'cells' hmap. */
+    struct pivot_value *value;
+    unsigned int idx[];         /* One index per table dimension. */
+  };
 
 #endif /* output/pivot-table.h */