// Draw the Stars
void fgStarsRender( void );
-extern struct OrbElements pltOrbElements[9];
+// [no longer used?] extern struct OrbElements pltOrbElements[9];
extern fgTIME cur_time_params;
// $Log$
+// Revision 1.8 1999/01/19 20:57:00 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.7 1998/09/24 15:36:20 curt
// Converted to c++ style comments.
//
--------------------------------------------------------------------------*/
-#include <sys/types.h>
+/* #include <sys/types.h> */
/* #include <sys/stat.h> */
#include <stdlib.h>
#include <stdio.h>
/* Flight Gear Modification Log
*
* $Log$
+ * Revision 1.25 1999/01/19 20:57:02 curt
+ * MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+ *
* Revision 1.24 1998/12/14 13:27:47 curt
* Removed some old, outdated, no longer needed code.
*
# include <stdlib.h>
#endif
-#include <sys/stat.h> /* for stat() */
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h> /* for stat() */
+#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h> /* for stat() */
// $Log$
+// Revision 1.81 1999/01/19 20:57:03 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.80 1999/01/09 13:37:40 curt
// Convert fgTIMESTAMP to FGTimeStamp which holds usec instead of ms.
//
// (Log is kept at end of this file)
-#include <stdlib.h> // atoi()
+#include <Include/compiler.h>
-#include <string>
+#ifdef FG_HAVE_STD_INCLUDES
+# include <cstdlib> // atoi()
+#else
+# include <stdlib.h> // atoi()
+#endif
+
+#include STL_STRING
+#include STL_IOSTREAM
#include <vector>
#include "Include/fg_stl_config.h"
-#ifdef NEEDNAMESPACESTD
-using namespace std;
-#endif
+FG_USING_NAMESPACE(std);
#include <Aircraft/aircraft.hxx>
#include <Debug/logstream.hxx>
// $Log$
+// Revision 1.8 1999/01/19 20:57:04 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.7 1998/12/05 15:54:21 curt
// Renamed class fgFLIGHT to class FGState as per request by JSB.
//
-//
// options.cxx -- class to handle command line options
//
// Written by Curtis Olson, started April 1998.
// $Log$
+// Revision 1.37 1999/01/19 20:57:05 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.36 1999/01/07 20:25:10 curt
// Updated struct fgGENERAL to class FGGeneral.
//
# include <config.h>
#endif
+#include <Include/compiler.h>
+
#ifdef HAVE_WINDOWS_H
# include <windows.h>
#endif
#include <GL/glut.h>
#include <XGL/xgl.h>
-#include <string>
-#include <Include/compiler.h>
+#include STL_STRING
FG_USING_STD(string);
#include <vector>
#include "Include/fg_stl_config.h"
-#ifdef NEEDNAMESPACESTD
-using namespace std;
-#endif
+FG_USING_NAMESPACE(std);
#include "fg_serial.hxx"
// $Log$
+// Revision 1.25 1999/01/19 20:57:06 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.24 1998/11/25 01:34:01 curt
// Support for an arbitrary number of serial ports.
//
#endif
#include "Include/compiler.h"
+
#ifdef FG_HAVE_STD_INCLUDES
# include <cmath>
# include <cstdio>
// $Log$
+// Revision 1.29 1999/01/19 20:57:08 curt
+// MacOS portability changes contributed by "Robert Puyol" <puyol@abvent.fr>
+//
// Revision 1.28 1999/01/07 20:25:34 curt
// Portability changes and updates from Bernie Bright.
//