Get rid of superfluous Makefile in src/output/charts.
[pspp-builds.git] / src / output / charts / box-whisker.h
index 7b2c4b8fdc1c2407c86cfe308a1c5ed4b72a31ba..67c1e1281192d640ae6a96bc0b20e3ed7130c272 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2004 Free Software Foundation, Inc.
+   Copyright (C) 2004, 2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #ifndef BOX_WHISKER_H
 #define BOX_WHISKER_H
 
-struct chart ;
 struct box_whisker;
 
-void boxplot_draw_boxplot (struct chart *ch,
-                          double box_centre,
-                          double box_width,
-                          const struct box_whisker *w,
-                          const char *name);
-
-
-void boxplot_draw_yscale (struct chart *ch , double y_max, double y_min);
+struct boxplot *boxplot_create (double y_min, double y_max, const char *title);
+void boxplot_add_box (struct boxplot *,
+                      struct box_whisker *, const char *label);
+struct chart *boxplot_get_chart (struct boxplot *);
 
 #endif