]> git.mxchange.org Git - flightgear.git/blobdiff - src/Time/event.hxx
Fixed gauge spelling error.
[flightgear.git] / src / Time / event.hxx
index f6a694938b546ce065b74904bcb956c72df6e2e6..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 "fg_time.hxx"
-#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
@@ -88,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