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 2003/10/23 07:59:57 UTC

cvs commit: ws-axis/c/include/axis/common Handler.h

roshan      2003/10/22 22:59:57

  Modified:    c/include/axis/common Handler.h
  Log:
  added the following:
  #ifdef _DEBUG
  	#include "AxisTrace.h"
  #endif
  
  Revision  Changes    Path
  1.2       +3 -1      ws-axis/c/include/axis/common/Handler.h
  
  Index: Handler.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/common/Handler.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Handler.h	20 Oct 2003 03:18:19 -0000	1.1
  +++ Handler.h	23 Oct 2003 05:59:57 -0000	1.2
  @@ -7,7 +7,9 @@
   
   #include "BasicHandler.h"
   #include <map>
  -#include "AxisTrace.h"
  +#ifdef _DEBUG
  +	#include "AxisTrace.h"
  +#endif
   using namespace std;
   
   class Handler : public BasicHandler