]> git.mxchange.org Git - flightgear.git/commitdiff
#include tweaks.
authorcurt <curt>
Fri, 11 Dec 1998 20:26:54 +0000 (20:26 +0000)
committercurt <curt>
Fri, 11 Dec 1998 20:26:54 +0000 (20:26 +0000)
Time/Makefile.am
Time/fg_time.cxx
Time/timestamp.hxx

index a74e3874b2815797fb405793294c5041d2f52055..375eccae7847693a083d4f0c6bcf6ddcca4097f6 100644 (file)
@@ -13,6 +13,7 @@ libTime_a_SOURCES = \
        fg_time.cxx fg_time.hxx \
        fg_timer.cxx fg_timer.hxx \
        light.cxx light.hxx \
-       sunpos.cxx sunpos.hxx
+       sunpos.cxx sunpos.hxx \
+       timestamp.hxx
 
 INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
index 11cb3b9a359fd9a7e98c21a1ee14eb928fc983cc..4dbf4edd10e420bd9edce06074b2d6364b4501d4 100644 (file)
 #  include <sys/time.h>  // for get/setitimer, gettimeofday, struct timeval
 #endif
 
-#ifdef  WIN32
-#  include <windows.h>
-#  if defined( __CYGWIN__ ) || defined( __CYGWIN32__ )
-#    define NEAR /* */
-#    define FAR  /* */
-#  endif
-#  include <mmsystem.h>
-#endif
-
 #include <Astro/sky.hxx>
 #include <Astro/solarsystem.hxx>
 #include <Debug/logstream.hxx>
@@ -398,6 +389,9 @@ void fgTimeUpdate(FGState *f, fgTIME *t) {
 
 
 // $Log$
+// Revision 1.27  1998/12/11 20:26:55  curt
+// #include tweaks.
+//
 // Revision 1.26  1998/12/05 15:54:28  curt
 // Renamed class fgFLIGHT to class FGState as per request by JSB.
 //
index 43f0685aaea82f83bc9b2242d6bcdbd1dc2b7ca3..c27eaefd57b4fe3129584728bff0b9ff24342244 100644 (file)
 #  include <sys/time.h>  // for get/setitimer, gettimeofday, struct timeval
 #endif
 
+#ifdef  WIN32
+#  include <windows.h>
+#  if defined( __CYGWIN__ ) || defined( __CYGWIN32__ )
+#    define NEAR /* */
+#    define FAR  /* */
+#  endif
+#  include <mmsystem.h>
+#endif
+
 
 class fgTIMESTAMP {
 
@@ -149,6 +158,9 @@ inline long operator - (const fgTIMESTAMP& a, const fgTIMESTAMP& b)
 
 
 // $Log$
+// Revision 1.2  1998/12/11 20:26:56  curt
+// #include tweaks.
+//
 // Revision 1.1  1998/12/05 14:21:33  curt
 // Moved struct fg_timestamp to class fgTIMESTAMP and moved it's definition
 // to it's own file, timestamp.hxx.