Compilation: fix up tools includes.
[gnumeric.git] / src / tools / tabulate.h
blob8a64054226130dce482b51789de7095ceeb210d3
1 #ifndef GNUMERIC_TABULATE_H
2 #define GNUMERIC_TABULATE_H
4 #include "gnumeric.h"
5 #include "numbers.h"
6 #include <tools/dao.h>
7 #include "tools.h"
9 typedef struct {
10 GnmCell *target;
11 int dims;
12 GnmCell **cells;
13 gnm_float *minima;
14 gnm_float *maxima;
15 gnm_float *steps;
16 gboolean with_coordinates;
17 } GnmTabulateInfo;
19 GSList *
20 do_tabulation (WorkbookControl *wbc,
21 GnmTabulateInfo *data);
23 #endif