X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fprocedure.h;h=09d44eeef612bdda52072acbf8be40a8982f9a46;hb=ba03e6dae4d379b510b053c4df6d41277b456d3a;hp=1b014e81cf158e2a879bd406c46668b27a2822c0;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/data/procedure.h b/src/data/procedure.h index 1b014e81..09d44eee 100644 --- a/src/data/procedure.h +++ b/src/data/procedure.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2007, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -51,17 +51,21 @@ struct dictionary ; typedef void replace_source_callback (struct casereader *); typedef void replace_dictionary_callback (struct dictionary *); +typedef void transformation_change_callback_func (bool non_empty, void *aux); -struct dataset * create_dataset (replace_source_callback *, - replace_dictionary_callback *); +struct dataset * create_dataset (void); void destroy_dataset (struct dataset *); +void dataset_add_transform_change_callback (struct dataset *, + transformation_change_callback_func *, void *); + void proc_discard_active_file (struct dataset *); void proc_set_active_file (struct dataset *, struct casereader *, struct dictionary *); bool proc_set_active_file_data (struct dataset *, struct casereader *); bool proc_has_active_file (const struct dataset *ds); +struct casereader *proc_extract_active_file_data (struct dataset *); void proc_discard_output (struct dataset *ds); @@ -78,7 +82,9 @@ struct dictionary *dataset_dict (const struct dataset *ds); const struct casereader *dataset_source (const struct dataset *ds); -struct ccase *lagged_case (const struct dataset *ds, int n_before); +const struct ccase *lagged_case (const struct dataset *ds, int n_before); void dataset_need_lag (struct dataset *ds, int n_before); +void dataset_set_callback (struct dataset *ds, void (*cb) (void *), void *); + #endif /* procedure.h */