]> OCCT Git - occt-wok.git/commitdiff
No comments
authorcas <cas@opencascade.com>
Fri, 1 Mar 2002 18:12:25 +0000 (18:12 +0000)
committercas <cas@opencascade.com>
Fri, 1 Mar 2002 18:12:25 +0000 (18:12 +0000)
src/WOKOrbix/WOKOrbix_ExtractServerList.cxx
src/WOKOrbix/WOKOrbix_IDLCompile.cxx

index cf36940a6ac3ad35b751a9b24f381d9c3c80cc16..26aa31334cb547b18f81528df3ecdf3d63087ad5 100755 (executable)
@@ -3,11 +3,16 @@
 // Author:     Jean GAUTIER
 //             <jga@hourax.paris1.matra-dtv.fr>
 
-#include <fstream.h>
 #ifdef HAVE_CONFIG_H
 # include <config.h>
 #endif
 
+#ifdef HAVE_FSTREAM
+# include <fstream>
+#elif defined (HAVE_FSTREAM_H)
+# include <fstream.h>
+#endif
+
 #include <WOKTools_Messages.hxx>
 
 #include <WOKUtils_Path.hxx>
@@ -26,7 +31,9 @@
 
 #define READBUF_SIZE 1024
 
-#ifdef HAVE_IOMANIP_H
+#ifdef HAVE_IOMANIP
+# include <iomanip>
+#elif defined (HAVE_IOMANIP_H)
 # include <iomanip.h>
 #endif
 
index d548efadc82791677dfa618a212715b474edeac5..6912b44aab070ef03b39f62da4087c1894ef5dd9 100755 (executable)
@@ -8,7 +8,11 @@
 
 #ifdef WNT
 #include <io.h>
-#else
+#endif
+
+#ifdef HAVE_FSTREAM
+# include <fstream>
+#elif defined (HAVE_FSTREAM_H)
 # include <fstream.h>
 #endif