]> git.mxchange.org Git - flightgear.git/blobdiff - src/Time/event.hxx
Substantial rewrite of FGNewMat, the material class. Most of the
[flightgear.git] / src / Time / event.hxx
index c99fc357f5c07039522225ccd360353dae238cdf..067876fc9db220fb22ddd040547520645f8d2f32 100644 (file)
@@ -31,6 +31,7 @@
 
 
 #include <simgear/compiler.h>
+#include <simgear/timing/timestamp.hxx>
 
 #include <Include/fg_callback.hxx>
 
 #include <list>         // STL list
 #include STL_STRING
 
-#include "timestamp.hxx"
 
-FG_USING_STD(deque);
-FG_USING_STD(list);
-FG_USING_STD(string);
+SG_USING_STD(deque);
+SG_USING_STD(list);
+SG_USING_STD(string);
 
 
 class fgEVENT
@@ -87,9 +87,9 @@ private:
 
     long interval;    // interval in ms between each iteration of this event
 
-    FGTimeStamp last_run;
-    FGTimeStamp current;
-    FGTimeStamp next_run;
+    SGTimeStamp last_run;
+    SGTimeStamp current;
+    SGTimeStamp next_run;
 
     long cum_time;    // cumulative processor time of this event
     long min_time;    // time of quickest execution