diff options
author | shankar | 2010-04-06 10:43:11 +0000 |
---|---|---|
committer | shankar | 2010-04-06 10:43:11 +0000 |
commit | 4c810e8d4b0af23ba44fabeea2eaeab8f78aea0e (patch) | |
tree | 155da7d6c9d804c64e453909cf4a074f48b700c2 /axiom/include | |
parent | 8cae03c973a74f21d6d5a69d89498bfd781d3572 (diff) | |
download | axis2c-4c810e8d4b0af23ba44fabeea2eaeab8f78aea0e.tar.gz axis2c-4c810e8d4b0af23ba44fabeea2eaeab8f78aea0e.tar.bz2 |
Adding axiom_document_build_next method
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@931079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'axiom/include')
-rw-r--r-- | axiom/include/axiom_document.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/axiom/include/axiom_document.h b/axiom/include/axiom_document.h index 87920c1..6b846ac 100644 --- a/axiom/include/axiom_document.h +++ b/axiom/include/axiom_document.h @@ -70,6 +70,16 @@ extern "C" axiom_document_t *document, const axutil_env_t * env); + /** Builds the next node if the builder is not finished with input xml stream + * @param document document whose next node is to be built. cannot be NULL + * @param env Environment. MUST NOT be NULL. + * @return pointer to the next node. NULL on error. + */ + AXIS2_EXTERN axiom_node_t *AXIS2_CALL + axiom_document_build_next( + struct axiom_document *document, + const axutil_env_t * env); + /** @} */ #ifdef __cplusplus |