Enable the show value labels feature
[pspp] / src / language / stats / chart-category.h
1 #ifndef BARCHART_DEF_H
2 #define BARCHART_DEF_H 1
3
4 struct ag_func
5 {
6   const char *name;
7   const char *description;
8
9   int arity;
10   bool cumulative;
11   double (*pre) (void);
12   double (*calc) (double acc, double x, double w);
13   double (*post) (double acc, double cc);
14   double (*ppost) (double acc, double ccc);
15 };
16
17 extern const struct ag_func ag_func[];
18
19 extern const int N_AG_FUNCS;
20
21 #endif