]> git.mxchange.org Git - flightgear.git/commitdiff
MSVC++ portability tweaks contributed by Bernie Bright.
authorcurt <curt>
Mon, 15 Mar 1999 17:58:57 +0000 (17:58 +0000)
committercurt <curt>
Mon, 15 Mar 1999 17:58:57 +0000 (17:58 +0000)
  Added using std::istream declaration.

Airports/simple.hxx

index 221b6109781e47377532f9b8bf9f35a4795c86b0..38e4b8b6510b68350ad9bf4dc2fd5c61ea087966 100644 (file)
 
 
 #include <Include/compiler.h>
+#ifdef FG_HAVE_STD_INCLUDES
+#  include <istream>
+#else
+#  include <istream.h>
+#endif
 
 #include STL_STRING
 #include <set>
 
 FG_USING_STD(string);
 FG_USING_STD(set);
+FG_USING_STD(istream);
 
 
 class fgAIRPORT {
@@ -105,6 +111,10 @@ public:
 
 
 // $Log$
+// Revision 1.8  1999/03/15 17:58:57  curt
+// MSVC++ portability tweaks contributed by Bernie Bright.
+//   Added using std::istream declaration.
+//
 // Revision 1.7  1999/03/02 01:02:33  curt
 // Tweaks for building with native SGI compilers.
 //