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 cb...@apache.org on 2005/01/27 09:17:08 UTC

cvs commit: ws-axis/c/include/axis IWrapperSoapSerializer.hpp

cblecken    2005/01/27 00:17:08

  Modified:    c/include/axis IWrapperSoapSerializer.hpp
  Log:
  Add namespace prefixing to several serializer methods (AXSICPP-197)
  
  Revision  Changes    Path
  1.5       +6 -0      ws-axis/c/include/axis/IWrapperSoapSerializer.hpp
  
  Index: IWrapperSoapSerializer.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/IWrapperSoapSerializer.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IWrapperSoapSerializer.hpp	26 Jan 2005 11:10:07 -0000	1.4
  +++ IWrapperSoapSerializer.hpp	27 Jan 2005 08:17:08 -0000	1.5
  @@ -91,10 +91,16 @@
       virtual int AXISCALL serializeBasicArray
           (const Axis_Array* pArray, XSDTYPE nType, const AxisChar* pName)=0;
   
  +	virtual int AXISCALL serializeBasicArray
  +		(const Axis_Array* pArray, const AxisChar* pNamespace, XSDTYPE nType, const AxisChar* pName)=0;
  +
       /* Basic Type Serializing methods */
       virtual int AXISCALL serializeAsElement(const AxisChar* sName, 
           void* pValue, XSDTYPE type)=0;
   
  +    virtual int AXISCALL serializeAsElement(const AxisChar* sName, const AxisChar* pNamespace, 
  +        void* pValue, XSDTYPE type)=0;
  +
       virtual int AXISCALL serializeAsAttribute(const AxisChar* sName, 
           const AxisChar* pNamespace, void* pValue, XSDTYPE type)=0;