X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.h;h=96529a1bd3aaa075dff403ef4bd2c78d46c25ec4;hb=c5ad65b0351ab1d897eb072eeaec06fb37802b01;hp=0b3c6cd273aae6e8a27357bf0a1a3104963cb0bb;hpb=e2583dfdd29bc30e30ec1f0b38cb261ba6d87e37;p=pspp-builds.git diff --git a/src/data/dictionary.h b/src/data/dictionary.h index 0b3c6cd2..96529a1b 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 *);