Implement variable and data file attributes.
[pspp-builds.git] / src / data / dictionary.h
index 0ab259d35b539f1635345a307572817944986d50..bb14f52ebef0fe7560ddab190693f75be8b6457f 100644 (file)
@@ -142,6 +142,11 @@ const struct vector *dict_lookup_vector (const struct dictionary *,
                                          const char *name);
 void dict_clear_vectors (struct dictionary *);
 
+/* Attributes. */
+struct attrset *dict_get_attributes (const struct dictionary *);
+void dict_set_attributes (struct dictionary *, const struct attrset *);
+bool dict_has_attributes (const struct dictionary *);
+
 /* Functions to be called upon dictionary changes. */
 struct dict_callbacks
  {