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/12/01 16:20:40 UTC

cvs commit: xml-xalan/c/samples/CompileStylesheet CompileStylesheet.cpp

auriemma    00/12/01 07:20:39

  Modified:    c/samples/CompileStylesheet CompileStylesheet.cpp
  Log:
  HP port based on work from Trevor Smigiel and Troy Heber.
  
  Revision  Changes    Path
  1.15      +9 -0      xml-xalan/c/samples/CompileStylesheet/CompileStylesheet.cpp
  
  Index: CompileStylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/CompileStylesheet/CompileStylesheet.cpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- CompileStylesheet.cpp	2000/11/28 17:10:29	1.14
  +++ CompileStylesheet.cpp	2000/12/01 15:20:37	1.15
  @@ -4,9 +4,18 @@
   
   
   #include <cassert>
  +
  +
  +
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <fstream.h>
  +#include <iostream.h>
  +#include <strstream.h>
  +#else
   #include <fstream>
   #include <iostream>
   #include <strstream>
  +#endif