]> git.mxchange.org Git - flightgear.git/blobdiff - Airports/simple.hxx
Tweaks for building with native SGI compilers.
[flightgear.git] / Airports / simple.hxx
index dd2399b0fa2ee703016afdeb91892bdce631d3df..221b6109781e47377532f9b8bf9f35a4795c86b0 100644 (file)
@@ -1,5 +1,5 @@
 //
-// airports.hxx -- a really simplistic class to manage airport ID,
+// simple.hxx -- a really simplistic class to manage airport ID,
 //                 lat, lon of the center of one of it's runways, and 
 //                 elevation in feet.
 //
 #endif                                   
 
 
-#include <string>        // Standard C++ string library
+#include <Include/compiler.h>
+
+#include STL_STRING
 #include <set>
-#include "Include/fg_stl_config.h"
 
-#ifdef NEEDNAMESPACESTD
-using namespace std;
-#endif
+FG_USING_STD(string);
+FG_USING_STD(set);
 
 
 class fgAIRPORT {
@@ -70,7 +70,7 @@ operator >> ( istream& in, fgAIRPORT& a )
 
 class fgAIRPORTS {
 public:
-#ifdef _FG_NO_DEFAULT_TEMPLATE_ARGS
+#ifdef FG_NO_DEFAULT_TEMPLATE_ARGS
     typedef set< fgAIRPORT, less< fgAIRPORT > > container;
 #else
     typedef set< fgAIRPORT > container;
@@ -105,6 +105,16 @@ public:
 
 
 // $Log$
+// Revision 1.7  1999/03/02 01:02:33  curt
+// Tweaks for building with native SGI compilers.
+//
+// Revision 1.6  1999/02/26 22:08:36  curt
+// Added initial support for native SGI compilers.
+//
+// Revision 1.5  1998/11/02 18:25:34  curt
+// Check for __CYGWIN__ (b20) as well as __CYGWIN32__ (pre b20 compilers)
+// Other misc. tweaks.
+//
 // Revision 1.4  1998/09/08 21:38:43  curt
 // Changes by Bernie Bright.
 //