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 sa...@apache.org on 2005/01/17 03:52:45 UTC

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

samisa      2005/01/16 18:52:45

  Modified:    c/include/axis/client Call.hpp
  Log:
  Added field to track initilizing and uninitializing of Call. This is important to celan up in case of exceptions
  
  Revision  Changes    Path
  1.17      +5 -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.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Call.hpp	7 Jan 2005 16:35:20 -0000	1.16
  +++ Call.hpp	17 Jan 2005 02:52:45 -0000	1.17
  @@ -447,6 +447,11 @@
       * It is possible that initialize_module could have been called already.
       */
       bool m_bModuleInitialized;
  +
  +  /**
  +    * To track if the initialize was called/matched with an uninitialize
  +    */
  +    bool m_bCallInitialized;
     
       // Samisa m_pchSessionID was misssing and there was a compile error due to this
       char* m_pchSessionID;