X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fd1_attset.h;h=c2fb952e8573e8518dfd1fe4852685c96ba70298;hb=0a159e0b47088801788dc3a90b79f6d5e964ea1f;hp=42bf4b47b9a54d4542290c96bc563e2226c67811;hpb=2004bbd9b3bbce5eb8ecc49520255b3d0bf578b9;p=yaz-moved-to-github.git diff --git a/include/d1_attset.h b/include/d1_attset.h index 42bf4b4..c2fb952 100644 --- a/include/d1_attset.h +++ b/include/d1_attset.h @@ -41,12 +41,18 @@ struct data1_attset; +typedef struct data1_local_attribute +{ + int local; + struct data1_local_attribute *next; +} data1_local_attribute; + typedef struct data1_att { struct data1_attset *parent; /* attribute set */ - char *name; /* symbolic name of this tag */ - int value; /* tag value */ - int local; /* local index value */ + char *name; /* symbolic name of this attribute */ + int value; /* attribute value */ + data1_local_attribute *locals; /* local index values */ struct data1_att *next; } data1_att;