some more mconvert
[pspp] / src / language / data-io / matrix-reader.h
index a0e0bb8ea23d0ff4247bf933961819405c8be1a9..5aec05e009f4a0f19bdb776b40aeef3b0168c764 100644 (file)
@@ -32,10 +32,14 @@ struct matrix_reader
     struct casegrouper *grouper;
 
     /* Variables in 'dict'. */
-    const struct variable **cvars;  /* Continuous variables. */
-    size_t n_cvars;
+    const struct variable **svars;  /* Split variables. */
+    size_t n_svars;
     const struct variable *rowtype; /* ROWTYPE_. */
+    const struct variable **fvars;  /* Factor variables. */
+    size_t n_fvars;
     const struct variable *varname; /* VARNAME_. */
+    const struct variable **cvars;  /* Continuous variables. */
+    size_t n_cvars;
   };
 
 struct matrix_material