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 2005/11/14 07:18:52 UTC

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

Author: jamejose
Date: Sun Nov 13 22:18:40 2005
New Revision: 344059

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

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/Type.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/Type.hpp?rev=344059&r1=344058&r2=344059&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/Type.hpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/Combo_TTest/Type.hpp Sun Nov 13 22:18:40 2005
@@ -22,6 +22,7 @@
 #define __TYPE_PARAM_H__INCLUDED_
 
 #include <axis/AxisUserAPI.hpp>
+#include <axis/AxisUserAPIArrays.hpp>
 AXIS_CPP_NAMESPACE_USE 
 
 /*Local name and the URI for the type*/
@@ -31,9 +32,15 @@
 class STORAGE_CLASS_INFO Type
 {
 public:
-	xsd__int_Array item;
+	xsd__int_Array * item;
+
+	xsd__int_Array * getitem();
+	void setitem(xsd__int_Array * pInValue);
+
 	Type();
-	~Type();
+
+	void reset();
+	virtual ~Type();
 };
 
 #endif /* !defined(__TYPE_PARAM_H__INCLUDED_)*/