Break get.c up into multiple files in a logical fashion.
[pspp-builds.git] / src / data / case-map.h
index 86d448ec9d8aefe6b45efdf9463313e212814cf4..1c8608c291b7d09df64d692142f4c5915c6aa9a2 100644 (file)
 #include <stddef.h>
 
 struct case_map;
-struct dictionary;
+struct casereader;
+struct casewriter;
 struct ccase;
+struct dictionary;
 
 struct case_map *case_map_create (void);
 void case_map_destroy (struct case_map *);
@@ -37,6 +39,11 @@ void case_map_execute (const struct case_map *,
 
 size_t case_map_get_value_cnt (const struct case_map *);
 
+struct casereader *case_map_create_input_translator (struct case_map *,
+                                                    struct casereader *);
+struct casewriter *case_map_create_output_translator (struct case_map *,
+                                                      struct casewriter *);
+
 /* For mapping cases for one version of a dictionary to those in
    a modified version of the same dictionary. */
 void case_map_prepare_dict (const struct dictionary *);