You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/05/11 21:04:57 UTC

cvs commit: xml-xalan/c/src/XercesPlatformSupport XercesStdTextOutputStream.hpp

dbertoni    00/05/11 12:04:57

  Modified:    c/src/XercesPlatformSupport XercesStdTextOutputStream.hpp
  Log:
  Added conditional compile for platorms that do not supply iosfwd.
  
  Revision  Changes    Path
  1.3       +8 -0      xml-xalan/c/src/XercesPlatformSupport/XercesStdTextOutputStream.hpp
  
  Index: XercesStdTextOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesStdTextOutputStream.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XercesStdTextOutputStream.hpp	2000/03/06 20:23:15	1.2
  +++ XercesStdTextOutputStream.hpp	2000/05/11 19:04:57	1.3
  @@ -63,10 +63,18 @@
   #include <XercesPlatformSupport/XercesPlatformSupportDefinitions.hpp>
   
   
  +
  +#define XALAN_NO_IOSFWD
   #if !defined(_MSC_VER)
   #include <cstdio>
   #endif
  +
  +#if defined(XALAN_NO_IOSFWD)
  +#include <ostream>
  +#else
   #include <iosfwd>
  +#endif
  +
   #include <vector>