refactor
[pspp] / src / language / stats / npar-summary.h
index 4cd080a29958b3c94976b1d03fa7e8718f65e9e6..3955bd64119d054ff6318b7b97849fce14b5edb0 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2006 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2011 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
 #if !n_par_summary_h
 #define n_par_summary_h 1
 
-#include <config.h>
+#include "data/missing-values.h"
 
 struct variable ;
 struct casereader ;
 struct dictionary;
+struct fmt_spec;
 
 struct descriptives
 {
@@ -32,6 +33,12 @@ struct descriptives
   double max;
 };
 
+void
+do_summary_box (const struct descriptives *desc,
+               const struct variable *const *vv,
+               int n_vars,
+                const struct fmt_spec *wfmt);
+
 void npar_summary_calc_descriptives (struct descriptives *desc,
                                     struct casereader *input,
                                     const struct dictionary *dict,
@@ -39,11 +46,4 @@ void npar_summary_calc_descriptives (struct descriptives *desc,
                                     int n_vars,
                                      enum mv_class filter);
 
-
-void do_summary_box (const struct descriptives *desc,
-                    const struct variable *const *vv,
-                    int n_vars);
-
-
-
 #endif