6 // Linked list of name-value pair properties
11 class Property
: public ListItem
<Property
>
14 Property(char *property
, char *value
);
19 void setValue(char *value
);
22 char *property
, *value
;
25 class Properties
: public List
<Property
>
31 Property
*get(char *property
);