Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / math / levene.h
index 66944dafb434325aaaf4cc97a781a3f82e0be1c7..40ed52ce0ed493a6027f7435eda264ed8e54f03f 100644 (file)
@@ -21,9 +21,9 @@
 #if !levene_h
 #define levene_h 1
 
-
+#include <data/casereader.h>
+#include <data/missing-values.h>
 #include <data/variable.h>
-#include <data/casefile.h>
 
 /* Calculate the Levene statistic 
 
@@ -39,10 +39,10 @@ The dependent variables :   v_dep;
 struct dictionary ;
 struct casefilter ;
 
-void  levene(const struct dictionary *dict, const struct casefile *cf, 
+void  levene(const struct dictionary *dict, struct casereader *,
             const struct variable *v_indep, size_t n_dep, 
             const struct variable **v_dep,
-            struct casefilter *filter);
+            enum mv_class exclude);