]> git.mxchange.org Git - flightgear.git/blobdiff - Time/fg_time.hxx
Modifications to incorporate Jon S. Berndts flight model code.
[flightgear.git] / Time / fg_time.hxx
index 60ffd8341a544c7283e52461cc01092a97ed744e..a784531fef8e10686b7af292be5f640b31c49443 100644 (file)
 #endif
 
 #include <GL/glut.h>
-#include <time.h>
 
-#include <Flight/flight.hxx>
+#include "Include/compiler.h"
+#ifdef FG_HAVE_STD_INCLUDES
+#  include <ctime>
+#else
+#  include <time.h>
+#endif
+
+#include <FDM/flight.hxx>
 
 
 // Define a structure containing global time parameters
@@ -92,13 +98,26 @@ void fgTimeInit(fgTIME *t);
 
 
 // Update the time dependent variables
-void fgTimeUpdate(fgFLIGHT *f, fgTIME *t);
+void fgTimeUpdate(FGInterface *f, fgTIME *t);
 
 
 #endif // _FG_TIME_HXX
 
 
 // $Log$
+// Revision 1.14  1999/02/05 21:29:19  curt
+// Modifications to incorporate Jon S. Berndts flight model code.
+//
+// Revision 1.13  1999/02/01 21:33:39  curt
+// Renamed FlightGear/Simulator/Flight to FlightGear/Simulator/FDM since
+// Jon accepted my offer to do this and thought it was a good idea.
+//
+// Revision 1.12  1999/01/07 20:25:35  curt
+// Portability changes and updates from Bernie Bright.
+//
+// Revision 1.11  1998/12/05 15:54:29  curt
+// Renamed class fgFLIGHT to class FGState as per request by JSB.
+//
 // Revision 1.10  1998/12/05 14:21:31  curt
 // Moved struct fg_timestamp to class fgTIMESTAMP and moved it's definition
 // to it's own file, timestamp.hxx.