X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcasegrouper.h;h=a534b93747e9739bf76d6179ad9969499d53c18c;hb=06ac0c2d623e9ae54c3e22a2d6740219ab357b21;hp=5f686ff99027b814c6bef09ec91789aec29a033a;hpb=5da5a98055ad574120c3e3922af097411a0dcf3a;p=pspp diff --git a/src/data/casegrouper.h b/src/data/casegrouper.h index 5f686ff990..a534b93747 100644 --- a/src/data/casegrouper.h +++ b/src/data/casegrouper.h @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2007 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ /* Casegrouper. @@ -29,10 +27,10 @@ #include #include -struct case_ordering; struct casereader; struct ccase; struct dictionary; +struct subcase; struct variable; struct casegrouper * @@ -44,11 +42,11 @@ casegrouper_create_func (struct casereader *, void *aux); struct casegrouper *casegrouper_create_vars (struct casereader *, const struct variable *const *vars, - size_t var_cnt); + size_t n_vars); struct casegrouper *casegrouper_create_splits (struct casereader *, const struct dictionary *); -struct casegrouper *casegrouper_create_case_ordering (struct casereader *, - const struct case_ordering *); +struct casegrouper *casegrouper_create_subcase (struct casereader *, + const struct subcase *); bool casegrouper_get_next_group (struct casegrouper *, struct casereader **); bool casegrouper_destroy (struct casegrouper *);