You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@locus.apache.org on 2000/11/29 22:35:01 UTC

cvs commit: xml-xalan/c/src/PlatformSupport DOMStringHelper.cpp

auriemma    00/11/29 13:34:58

  Modified:    c/src/PlatformSupport DOMStringHelper.cpp
  Log:
  HP port based on work from Trevor Smigiel and Troy Heber.
  
  Revision  Changes    Path
  1.45      +12 -2     xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp
  
  Index: DOMStringHelper.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- DOMStringHelper.cpp	2000/11/27 21:43:07	1.44
  +++ DOMStringHelper.cpp	2000/11/29 21:34:54	1.45
  @@ -63,13 +63,23 @@
   #include <cmath>
   #include <cstdio>
   #include <cstdlib>
  -#include <iosfwd>
   
   
   
   #include <algorithm>
  -#include <strstream>
   #include <vector>
  +
  +
  +
  +#if !defined(XALAN_NO_IOSFWD)
  +#include <iosfwd>
  +#endif
  +
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <strstream.h>
  +#else
  +#include <strstream>
  +#endif