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 ja...@apache.org on 2006/02/03 09:42:59 UTC

svn commit: r374604 - /webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp

Author: jamejose
Date: Fri Feb  3 00:42:39 2006
New Revision: 374604

URL: http://svn.apache.org/viewcvs?rev=374604&view=rev
Log:
Type of argument to the function is modified

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp?rev=374604&r1=374603&r2=374604&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp Fri Feb  3 00:42:39 2006
@@ -36,14 +36,14 @@
 {
 }
 
-ComplexReturn* PrimitiveAndArray::sendPrimitiveAndArray(xsd__int Value0, xsd__int_Array Value1)  
+ComplexReturn* PrimitiveAndArray::sendPrimitiveAndArray(xsd__int Value0, xsd__int_Array *Value1)  
 {
 	ComplexReturn *ret=new ComplexReturn();
 	ret->returnInt=Value0;
 	ret->returnArray=Value1;
 	return ret;
 }
-ComplexReturn* PrimitiveAndArray::sendArrayAndPrimitive(xsd__int_Array Value0, xsd__int Value1)  
+ComplexReturn* PrimitiveAndArray::sendArrayAndPrimitive(xsd__int_Array *Value0, xsd__int Value1)  
 {
 	ComplexReturn *ret=new ComplexReturn();
 	ret->returnInt=Value1;