roshan      2003/07/26 04:35:13

  Modified:    c/src/common Param.h Param.cpp
  Log:
  after introducing new Serializer interfaces IWrapperSoapSerializer and 
IHandlerSoapSerializer
  
  Revision  Changes    Path
  1.8       +1 -1      xml-axis/c/src/common/Param.h
  
  Index: Param.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/Param.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Param.h   21 Jul 2003 14:10:17 -0000      1.7
  +++ Param.h   26 Jul 2003 11:35:12 -0000      1.8
  @@ -112,7 +112,7 @@
        int SetValue(string& sValue);
        int SetValue(XSDTYPE nType, uParamValue Value);
        XSDTYPE GetType() const;        
  -     int serialize(ISoapSerializer& pSZ);
  +     int serialize(IWrapperSoapSerializer& pSZ);
   
        //Following functions are used by wrapper class methods making sure of the 
valid type.
        int GetInt();
  
  
  
  1.9       +1 -1      xml-axis/c/src/common/Param.cpp
  
  Index: Param.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/Param.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Param.cpp 23 Jul 2003 09:30:47 -0000      1.8
  +++ Param.cpp 26 Jul 2003 11:35:12 -0000      1.9
  @@ -233,7 +233,7 @@
        return m_Type;
   }
   
  -int Param::serialize(ISoapSerializer& pSZ)
  +int Param::serialize(IWrapperSoapSerializer& pSZ)
   {
        string ATprefix;
        switch (m_Type){
  
  
  

Reply via email to