X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata%2Fdictionary.h;h=96529a1bd3aaa075dff403ef4bd2c78d46c25ec4;hb=97f9b8ad137e333af9b3c767556d28dfda93a461;hp=0b3c6cd273aae6e8a27357bf0a1a3104963cb0bb;hpb=844259de34f3b5ed9c1b4a024da63f96f4f2194e;p=pspp diff --git a/src/data/dictionary.h b/src/data/dictionary.h index 0b3c6cd273..96529a1bd3 100644 --- a/src/data/dictionary.h +++ b/src/data/dictionary.h @@ -120,7 +120,6 @@ const struct variable *const *dict_get_split_vars (const struct dictionary *); size_t dict_get_split_cnt (const struct dictionary *); void dict_set_split_vars (struct dictionary *, struct variable *const *, size_t cnt); -void dict_unset_split_var (struct dictionary *, struct variable *); /* File label. */ const char *dict_get_label (const struct dictionary *); @@ -149,6 +148,16 @@ const struct vector *dict_lookup_vector (const struct dictionary *, const char *name); void dict_clear_vectors (struct dictionary *); +/* Multiple response sets. */ +const struct mrset *dict_get_mrset (const struct dictionary *, size_t idx); +size_t dict_get_n_mrsets (const struct dictionary *); +const struct mrset *dict_lookup_mrset (const struct dictionary *, + const char *name); + +bool dict_add_mrset (struct dictionary *, struct mrset *); +bool dict_delete_mrset (struct dictionary *, const char *name); +void dict_clear_mrsets (struct dictionary *); + /* Attributes. */ struct attrset *dict_get_attributes (const struct dictionary *); void dict_set_attributes (struct dictionary *, const struct attrset *);