]> git.mxchange.org Git - flightgear.git/blobdiff - Time/event.hxx
Tweaks for building with native SGI compilers.
[flightgear.git] / Time / event.hxx
index 57d81e81de0b55dd1159452b97ccb4a46f1e9bd0..69ad7217e1415f74973add3e060664c44bdc35f7 100644 (file)
 #endif                                   
 
 
-#include "Include/compiler.h"
-#include "Include/fg_callback.hxx"
+#include <Include/compiler.h>
+#include <Include/fg_callback.hxx>
 
 #include <deque>        // STL double ended queue
 #include <list>         // STL list
-#include <string>
+#include STL_STRING
+
+#include "fg_time.hxx"
+#include "timestamp.hxx"
 
 FG_USING_STD(deque);
 FG_USING_STD(list);
 FG_USING_STD(string);
 
-#include "fg_time.hxx"
-#include "timestamp.hxx"
-
 
 class fgEVENT
 {
@@ -88,9 +88,9 @@ private:
 
     long interval;    // interval in ms between each iteration of this event
 
-    fgTIMESTAMP last_run;
-    fgTIMESTAMP current;
-    fgTIMESTAMP next_run;
+    FGTimeStamp last_run;
+    FGTimeStamp current;
+    FGTimeStamp next_run;
 
     long cum_time;    // cumulative processor time of this event
     long min_time;    // time of quickest execution
@@ -166,6 +166,15 @@ extern fgEVENT_MGR global_events;
 
 
 // $Log$
+// Revision 1.18  1999/03/02 01:03:33  curt
+// Tweaks for building with native SGI compilers.
+//
+// Revision 1.17  1999/02/26 22:10:08  curt
+// Added initial support for native SGI compilers.
+//
+// Revision 1.16  1999/01/09 13:37:43  curt
+// Convert fgTIMESTAMP to FGTimeStamp which holds usec instead of ms.
+//
 // Revision 1.15  1999/01/07 20:25:33  curt
 // Portability changes and updates from Bernie Bright.
 //