1 #ifndef COIN_XML_ATTRIBUTE_H 2 #define COIN_XML_ATTRIBUTE_H 44 COIN_DLL_API cc_xml_attr * cc_xml_attr_new(
void);
45 COIN_DLL_API cc_xml_attr * cc_xml_attr_new_from_data(
const char * name,
const char * value);
46 COIN_DLL_API cc_xml_attr * cc_xml_attr_clone(
const cc_xml_attr * orig);
47 COIN_DLL_API
void cc_xml_attr_delete_x(cc_xml_attr * attr);
49 COIN_DLL_API
void cc_xml_attr_set_name_x(cc_xml_attr * attr,
const char * name);
50 COIN_DLL_API
const char * cc_xml_attr_get_name(
const cc_xml_attr * attr);
51 COIN_DLL_API
void cc_xml_attr_set_value_x(cc_xml_attr * attr,
const char * value);
52 COIN_DLL_API
const char * cc_xml_attr_get_value(
const cc_xml_attr * attr);