1#ifndef COIN_XML_ATTRIBUTE_H
2#define COIN_XML_ATTRIBUTE_H
36#include <Inventor/C/XML/types.h>
44COIN_DLL_API cc_xml_attr * cc_xml_attr_new(
void);
45COIN_DLL_API cc_xml_attr * cc_xml_attr_new_from_data(
const char * name,
const char * value);
46COIN_DLL_API cc_xml_attr * cc_xml_attr_clone(
const cc_xml_attr * orig);
47COIN_DLL_API
void cc_xml_attr_delete_x(cc_xml_attr * attr);
49COIN_DLL_API
void cc_xml_attr_set_name_x(cc_xml_attr * attr,
const char * name);
50COIN_DLL_API
const char * cc_xml_attr_get_name(
const cc_xml_attr * attr);
51COIN_DLL_API
void cc_xml_attr_set_value_x(cc_xml_attr * attr,
const char * value);
52COIN_DLL_API
const char * cc_xml_attr_get_value(
const cc_xml_attr * attr);