Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / language / stats / npar.h
index 3907bb26716993de67e369d6aaf837b6d3dc3aaa..80446c3a56af41e6f392e6738c2c9fe43ca0b7b3 100644 (file)
 #if !npar_h
 #define npar_h 1
 
-typedef const struct variable *var_ptr;
-typedef var_ptr variable_pair[2];
+#include <stddef.h>
+#include <data/missing-values.h>
+
+#include <stddef.h>
+#include <data/missing-values.h>
+typedef struct variable *variable_pair[2];
 
 struct hsh_table;
 struct const_hsh_table;
-struct casefilter ;
+struct casefilter;
+struct casereader;
+struct dataset;
 
 struct npar_test
 {
   void (*execute) (const struct dataset *, 
-                  const struct casefile *, 
-                  struct casefilter *,
+                  struct casereader *,
+                   enum mv_class exclude,
                   const struct npar_test *
                   );