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 ha...@apache.org on 2005/01/11 18:01:31 UTC

cvs commit: ws-axis/c/src/common MessageData.cpp MessageData.h

hawkeye     2005/01/11 09:01:31

  Modified:    c/src/common MessageData.cpp MessageData.h
  Log:
  Moved all impls into cpp and out of .h for easier reading
  
  Revision  Changes    Path
  1.31      +13 -0     ws-axis/c/src/common/MessageData.cpp
  
  Index: MessageData.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/MessageData.cpp,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- MessageData.cpp	27 Nov 2004 06:09:20 -0000	1.30
  +++ MessageData.cpp	11 Jan 2005 17:01:31 -0000	1.31
  @@ -64,6 +64,15 @@
       m_pDZ = pDZ;
   }
   
  +void MessageData::setOperationName(const AxisChar* pchOperation)
  +{
  +	m_sOperationName = pchOperation;
  +}
  +const AxisChar* MessageData::getOperationName()
  +{
  +	return m_sOperationName.c_str();
  +}
  +
   void MessageData::setUserName (string &sUserName)
   {
       m_sUserName = sUserName;
  @@ -136,6 +145,8 @@
           static_cast < IHandlerSoapDeSerializer * >(m_pDZ);
   }
   
  +
  +
   int MessageData::setProperty (AxisChar* pachName, const AxisChar* pachValue)
   {
       AxisChar* pachTmpName = new AxisChar[strlen (pachName) + 1];
  @@ -199,4 +210,6 @@
   {
       *pIAdminUtils = &m_AdminUtil;
   }
  +
  +
   AXIS_CPP_NAMESPACE_END
  
  
  
  1.20      +3 -6      ws-axis/c/src/common/MessageData.h
  
  Index: MessageData.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/MessageData.h,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- MessageData.h	27 Nov 2004 06:09:20 -0000	1.19
  +++ MessageData.h	11 Jan 2005 17:01:31 -0000	1.20
  @@ -55,12 +55,9 @@
       int setProperty(AxisChar* pachName, const AxisChar* pachValue);
       int setProperty(AxisChar* pachName, const void* pachValue, int len);
       void setComplexProperty(AxisChar* pachName, void* pachValue, int iObjectSize);
  -    void setOperationName(const AxisChar* pchOperation)
  -    {m_sOperationName = pchOperation;};
  -    void getSoapDeSerializer
  -        (IHandlerSoapDeSerializer** pIHandlerSoapDeSerializer);
  -    const AxisChar* AXISCALL getOperationName()
  -    {return m_sOperationName.c_str();};
  +    const AxisChar* AXISCALL getOperationName();
  +    void setOperationName(const AxisChar* pchOperation);
  +    void getSoapDeSerializer(IHandlerSoapDeSerializer** pIHandlerSoapDeSerializer);
       void AXISCALL getSoapSerializer(IWrapperSoapSerializer** pIWSS);
       void AXISCALL getSoapDeSerializer(IWrapperSoapDeSerializer** pIWSDS);
       void getSoapSerializer(IHandlerSoapSerializer** pIHandlerSoapSerializer);