You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ja...@apache.org on 2005/11/14 07:15:42 UTC

svn commit: r344051 - /webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp

Author: jamejose
Date: Sun Nov 13 22:15:31 2005
New Revision: 344051

URL: http://svn.apache.org/viewcvs?rev=344051&view=rev
Log:
Updated the testcase with new Array APIs

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp?rev=344051&r1=344050&r2=344051&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/DivByZeroStruct.hpp Sun Nov 13 22:15:31 2005
@@ -22,7 +22,9 @@
 #define __DIVBYZEROSTRUCT_PARAM_H__INCLUDED_
 
 #include <axis/AxisUserAPI.hpp>
+#include <axis/AxisUserAPIArrays.hpp>
 #include <axis/SoapFaultException.hpp>
+using namespace std;
 AXIS_CPP_NAMESPACE_USE 
 
 /*Local name and the URI for the type*/
@@ -35,8 +37,20 @@
 	xsd__string varString;
 	xsd__int varInt;
 	xsd__float varFloat;
+
+	xsd__string getvarString();
+	void setvarString(xsd__string InValue);
+
+	xsd__int getvarInt();
+	void setvarInt(xsd__int InValue);
+
+	xsd__float getvarFloat();
+	void setvarFloat(xsd__float InValue);
+
 	DivByZeroStruct();
-	~DivByZeroStruct() throw();
+
+	void reset();
+	virtual ~DivByZeroStruct() throw();
 };
 
 #endif /* !defined(__DIVBYZEROSTRUCT_PARAM_H__INCLUDED_)*/