]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ioswrap.h
the Russian translations were somehow corrupted, fixed
[wxWidgets.git] / include / wx / ioswrap.h
index ce0b15357c12b12f6b1550f3fd1450c2450802d6..6769adc56501a59c53b9608b3757e3dce64e83b2 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        ioswrap.h
+// Name:        wx/ioswrap.h
 // Purpose:     includes the correct iostream headers for current compiler
 // Author:      Vadim Zeitlin
 // Modified by:
@@ -9,12 +9,14 @@
 // Licence:     wxWindows license
 ///////////////////////////////////////////////////////////////////////////////
 
+#if wxUSE_STD_IOSTREAM
+
 #if wxUSE_IOSTREAMH
-    // N.B. BC++ doesn't have istream.h, ostream.h
 #   include <iostream.h>
 #else
 #   include <iostream>
-#   if defined(__VISUALC__) || defined(__MWERKS__)
-        using namespace std;
-#   endif
 #endif
+
+#endif
+  // wxUSE_STD_IOSTREAM
+