(parse_map_in): Improve error message when user
[pspp] / src / language / stats / npar.h
index 9118a44ce8e26b7b6b04ef7693bfa48c7c2c06fc..3907bb26716993de67e369d6aaf837b6d3dc3aaa 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
 #if !npar_h
 #define npar_h 1
 
-typedef struct variable *var_ptr;
+typedef const struct variable *var_ptr;
 typedef var_ptr variable_pair[2];
 
 struct hsh_table;
+struct const_hsh_table;
 struct casefilter ;
 
 struct npar_test
@@ -35,13 +35,13 @@ struct npar_test
                   );
 
   void (*insert_variables) (const struct npar_test *, 
-                           struct hsh_table *);
+                           struct const_hsh_table *);
 };
 
 struct one_sample_test
 {
   struct npar_test parent;
-  struct variable **vars;
+  const struct variable **vars;
   size_t n_vars;
 };