sys-file-reader: Ignore string weighting variable instead of aborting.
[pspp] / src / data / ods-reader.h
index 18eb65bc90f279ff0565bcd5c2f3dec447fe3d51..4acda231da0c0c51f542d21e1345ec6c556c21f4 100644 (file)
 
 struct casereader;
 struct dictionary;
-struct spreadsheet_read_info;
+
 struct spreadsheet_read_options;
+struct spreadsheet;
 
+const char * ods_get_sheet_name (struct spreadsheet *s, int n);
+char * ods_get_sheet_range (struct spreadsheet *s, int n);
 
-struct spreadsheet *ods_probe (const char *filename);
+struct spreadsheet *ods_probe (const char *filename, bool report_errors);
 
 struct casereader * ods_make_reader (struct spreadsheet *spreadsheet, 
-                                    const struct spreadsheet_read_info *gri,
-                                    struct spreadsheet_read_options *opts);
+                                    const struct spreadsheet_read_options *opts);
+
+void ods_destroy (struct spreadsheet *s);
 
 
 #endif