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 ro...@apache.org on 2004/07/07 14:09:01 UTC

cvs commit: ws-axis/c/src/soap HeaderBlock.h

roshan      2004/07/07 05:09:01

  Modified:    c/src/soap HeaderBlock.h
  Log:
  added the lines #include<string> and usring namespace std, inorder to fix a compile error which occured in linux
  
  Revision  Changes    Path
  1.11      +4 -0      ws-axis/c/src/soap/HeaderBlock.h
  
  Index: HeaderBlock.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/HeaderBlock.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HeaderBlock.h	6 Jul 2004 14:16:46 -0000	1.10
  +++ HeaderBlock.h	7 Jul 2004 12:09:01 -0000	1.11
  @@ -63,6 +63,10 @@
    * Added doxygen comments to help autobuild API docs
    */
   
  +#include <string>
  +
  +using namespace std;
  +
   class HeaderBlock : public IHeaderBlock
   {
   friend class SoapHeader;