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 pi...@apache.org on 2007/03/15 05:13:34 UTC

svn commit: r518467 - in /webservices/axis2/trunk/c/axiom: include/axiom_doctype.h src/om/om_node.c

Author: pini
Date: Wed Mar 14 21:13:33 2007
New Revision: 518467

URL: http://svn.apache.org/viewvc?view=rev&rev=518467
Log:
Dropped macros

Modified:
    webservices/axis2/trunk/c/axiom/include/axiom_doctype.h
    webservices/axis2/trunk/c/axiom/src/om/om_node.c

Modified: webservices/axis2/trunk/c/axiom/include/axiom_doctype.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_doctype.h?view=diff&rev=518467&r1=518466&r2=518467
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axiom_doctype.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axiom_doctype.h Wed Mar 14 21:13:33 2007
@@ -101,19 +101,6 @@
             const axis2_env_t *env,
             axiom_output_t *om_output);
 
-    /** free given doctype */
-#define AXIOM_DOCTYPE_FREE(doctype, env) \
-        axiom_doctype_free(doctype, env)
-    /** returns the value of doctype */
-#define AXIOM_DOCTYPE_GET_VALUE(doctype, env) \
-        axiom_doctype_get_value(doctype, env)
-    /** set the doctype value */
-#define AXIOM_DOCTYPE_SET_VALUE(doctype, env, value) \
-        axiom_doctype_set_value(doctype, env, value)
-    /** serialize op */
-#define AXIOM_DOCTYPE_SERIALIZE(doctype, env, om_output) \
-        axiom_doctype_serialize(doctype, env, om_output)
-
     /** @} */
 
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/axiom/src/om/om_node.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/om/om_node.c?view=diff&rev=518467&r1=518466&r2=518467
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/om/om_node.c (original)
+++ webservices/axis2/trunk/c/axiom/src/om/om_node.c Wed Mar 14 21:13:33 2007
@@ -118,7 +118,7 @@
     }
     else if (om_node->node_type == AXIOM_DOCTYPE)
     {
-        /*AXIOM_DOCTYPE_FREE((axiom_doctype_t*)(om_node->data_element), env);*/
+        /*axiom_doctype_free((axiom_doctype_t*)(om_node->data_element), env);*/
     }
     else if (om_node->node_type == AXIOM_PROCESSING_INSTRUCTION)
     {
@@ -390,7 +390,7 @@
     {
         if (om_node->data_element)
         {
-            status = AXIOM_DOCTYPE_SERIALIZE(
+            status = axiom_doctype_serialize(
                         (axiom_doctype_t*)(om_node->data_element),
                         env, om_output);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org