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 li...@apache.org on 2003/06/06 12:50:48 UTC

cvs commit: xml-axis/contrib/Axis-C++/src Platform.hpp

lilantha    2003/06/06 03:50:48

  Modified:    contrib/Axis-C++/src Platform.hpp
  Log:
  add debug message
  
  Revision  Changes    Path
  1.5       +6 -1      xml-axis/contrib/Axis-C++/src/Platform.hpp
  
  Index: Platform.hpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/contrib/Axis-C++/src/Platform.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Platform.hpp	3 Jun 2002 04:23:04 -0000	1.4
  +++ Platform.hpp	6 Jun 2003 10:50:48 -0000	1.5
  @@ -95,7 +95,12 @@
   
   #endif
   
  -
  +#if defined(_DEBUG)
  +#	include <iostream>
  +#	define DebugMsg(x)	std::cout << x <<std::endl;
  +#else
  +#	define DebugMsg(x)
  +#endif
   
   #endif // _AXIS_STDAFX_H