You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ro...@apache.org on 2004/08/03 05:43:09 UTC

cvs commit: ws-axis/c/src/soap Attribute.cpp

roshan      2004/08/02 20:43:09

  Modified:    c/src/soap Attribute.cpp
  Log:
  removed duplicate definitons of getXXXs
  
  Revision  Changes    Path
  1.23      +0 -15     ws-axis/c/src/soap/Attribute.cpp
  
  Index: Attribute.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/Attribute.cpp,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- Attribute.cpp	2 Aug 2004 14:15:26 -0000	1.22
  +++ Attribute.cpp	3 Aug 2004 03:43:09 -0000	1.23
  @@ -216,19 +216,4 @@
       m_value= value;
   }
   
  -const AxisChar* Attribute::getValue() {
  -    return m_value.c_str();
  -}
  -
  -const AxisChar* Attribute::getLocalName() {
  -    return m_localname.c_str();
  -}
  -
  -const AxisChar* Attribute::getUri() {
  -    return m_uri.c_str();
  -}
  -
  -const AxisChar* Attribute::getPrefix() {
  -    return m_prefix.c_str();
  -}