1 #ifndef COIN_XML_ATTRIBUTE_H 
    2 #define COIN_XML_ATTRIBUTE_H 
   27 #include <Inventor/C/XML/types.h> 
   35 COIN_DLL_API cc_xml_attr * cc_xml_attr_new(
void);
 
   36 COIN_DLL_API cc_xml_attr * cc_xml_attr_new_from_data(
const char * name, 
const char * value);
 
   37 COIN_DLL_API cc_xml_attr * cc_xml_attr_clone(
const cc_xml_attr * orig);
 
   38 COIN_DLL_API 
void cc_xml_attr_delete_x(cc_xml_attr * attr);
 
   40 COIN_DLL_API 
void cc_xml_attr_set_name_x(cc_xml_attr * attr, 
const char * name);
 
   41 COIN_DLL_API 
const char * cc_xml_attr_get_name(
const cc_xml_attr * attr);
 
   42 COIN_DLL_API 
void cc_xml_attr_set_value_x(cc_xml_attr * attr, 
const char * value);
 
   43 COIN_DLL_API 
const char * cc_xml_attr_get_value(
const cc_xml_attr * attr);