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 ro...@apache.org on 2003/07/26 14:17:00 UTC

cvs commit: xml-axis/c/src/common ArrayBean.h ArrayBean.cpp AccessBean.cpp

roshan      2003/07/26 05:17:00

  Modified:    c/src/common ArrayBean.h ArrayBean.cpp AccessBean.cpp
  Log:
  after introducing new Serializer interfaces IWrapperSoapSerializer and IHandlerSoapSerializer
  
  Revision  Changes    Path
  1.2       +1 -1      xml-axis/c/src/common/ArrayBean.h
  
  Index: ArrayBean.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/ArrayBean.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ArrayBean.h	21 Jul 2003 14:10:35 -0000	1.1
  +++ ArrayBean.h	26 Jul 2003 12:17:00 -0000	1.2
  @@ -22,7 +22,7 @@
   	ArrayBean();
   	virtual ~ArrayBean();
   	virtual int DeSerialize(ISoapDeSerializer *pDZ);
  -	virtual int Serialize(ISoapSerializer& pSZ);
  +	virtual int Serialize(IWrapperSoapSerializer& pSZ);
   	int GetArraySize();
   private:
   	int GetArrayBlockSize(list<int>::iterator it);
  
  
  
  1.2       +1 -1      xml-axis/c/src/common/ArrayBean.cpp
  
  Index: ArrayBean.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/ArrayBean.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ArrayBean.cpp	21 Jul 2003 14:10:35 -0000	1.1
  +++ ArrayBean.cpp	26 Jul 2003 12:17:00 -0000	1.2
  @@ -189,7 +189,7 @@
   	return SUCCESS;
   }
   */
  -int ArrayBean::Serialize(ISoapSerializer& pSZ)
  +int ArrayBean::Serialize(IWrapperSoapSerializer& pSZ)
   {	
   	switch (m_type)
   	{
  
  
  
  1.5       +1 -1      xml-axis/c/src/common/AccessBean.cpp
  
  Index: AccessBean.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/AccessBean.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AccessBean.cpp	21 Jul 2003 14:10:35 -0000	1.4
  +++ AccessBean.cpp	26 Jul 2003 12:17:00 -0000	1.5
  @@ -11,7 +11,7 @@
   }
   
   //this is never called. just default method
  -int AccessBean::Serialize(ISoapSerializer& pSZ)
  +int AccessBean::Serialize(IWrapperSoapSerializer& pSZ)
   {
   	return SUCCESS;
   }