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 wh...@apache.org on 2005/03/16 18:34:41 UTC

cvs commit: ws-axis/c/include/axis/client Call.hpp

whitlock    2005/03/16 09:34:41

  Modified:    c/include/axis/client Call.hpp
  Log:
  AXISCPP-545 Better api docs for Call::setNamespacePrefix
  
  Revision  Changes    Path
  1.24      +11 -0     ws-axis/c/include/axis/client/Call.hpp
  
  Index: Call.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/client/Call.hpp,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Call.hpp	9 Mar 2005 14:49:05 -0000	1.23
  +++ Call.hpp	16 Mar 2005 17:34:41 -0000	1.24
  @@ -426,6 +426,17 @@
   
       AnyType* AXISCALL getAnyObject();
       int AXISCALL addAnyObject(AnyType* pAnyObject);
  +
  +	/**
  +	 * Returns the prefix for a previously defined namespace. If the 
  +	 * namespace has not previously been associated with a prefix, it
  +	 * creates a new prefix, which is unique and returns that. It will
  +	 * only return prefixes for user-defined namespaces, so passing a 
  +	 * standard namespace will cause a new prefix to be created.
  +	 * 
  +	 * @param pNamespace the namespace to look for
  +	 * @return the prefix for this namespace
  +	 */
       const AxisChar* AXISCALL getNamespacePrefix(const AxisChar* pNamespace);
   	
   	/**