You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/11/16 05:31:45 UTC

svn commit: r344881 - /webservices/axis2/trunk/c/include/axis2_om_document.h

Author: samisa
Date: Tue Nov 15 20:31:40 2005
New Revision: 344881

URL: http://svn.apache.org/viewcvs?rev=344881&view=rev
Log:
new function added

Modified:
    webservices/axis2/trunk/c/include/axis2_om_document.h

Modified: webservices/axis2/trunk/c/include/axis2_om_document.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_om_document.h?rev=344881&r1=344880&r2=344881&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_om_document.h (original)
+++ webservices/axis2/trunk/c/include/axis2_om_document.h Tue Nov 15 20:31:40 2005
@@ -93,7 +93,10 @@
                                                         
         axis2_status_t (AXIS2_CALL *set_root_element)(struct axis2_om_document *document,
                                                        axis2_env_t **env,
-                                                       axis2_om_node_t *om_node);                                                        
+                                                       axis2_om_node_t *om_node);
+        
+        axis2_om_node_t* (AXIS2_CALL *build_all)(struct axis2_om_document *document,
+                                                axis2_env_t **env);            
 
 
     } axis2_om_document_ops_t;
@@ -140,6 +143,8 @@
 #define AXIS2_OM_DOCUMENT_SET_ROOT_ELEMENT(document,env,om_node) \
         ((document)->ops->set_root_element(document,env,om_node))       
 
+#define AXIS2_OM_DOCUMENT_BUILD_ALL(document,env) \
+        ((document)->ops->build_all(document,env)
 
 /** @} */