summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2006-02-19 03:31:37 +0000
committerDave Beckett <dave@dajobe.org>2006-02-19 03:31:37 +0000
commit62c057e9cf6fe318ce2c491dc8da2d98792cb76b (patch)
treeb5ce66face3eba1e0f5f85565b70c08e2bfa2bdc
parent4ce2f3f735c463e5ef7f8311f9fcb66dfae615b0 (diff)
downloadraptor-62c057e9cf6fe318ce2c491dc8da2d98792cb76b.tar.gz
Added prototypes for raptor_xml_element_get_attributes and
raptor_xml_element_get_attributes_count.
-rw-r--r--src/raptor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/raptor.h b/src/raptor.h
index 5ccd2509..bb104b0d 100644
--- a/src/raptor.h
+++ b/src/raptor.h
@@ -1189,6 +1189,10 @@ raptor_qname* raptor_xml_element_get_name(raptor_xml_element *xml_element);
RAPTOR_API
void raptor_xml_element_set_attributes(raptor_xml_element* xml_element, raptor_qname **attributes, int count);
RAPTOR_API
+raptor_qname** raptor_xml_element_get_attributes(raptor_xml_element* xml_element);
+RAPTOR_API
+int raptor_xml_element_get_attributes_count(raptor_xml_element* xml_element);
+RAPTOR_API
void raptor_xml_element_declare_namespace(raptor_xml_element* xml_element, raptor_namespace *nspace);
RAPTOR_API
int raptor_iostream_write_xml_element(raptor_iostream *iostr, raptor_xml_element *element, raptor_namespace_stack *nstack, int is_empty, int is_end, raptor_simple_message_handler error_handler, void *error_data, int depth);