From d1e4a4bc6f6a18a1f8c646e9eb6fbd7e2c6f98ec Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 5 Jul 2000 02:39:30 +0000 Subject: [PATCH] A lot of code reorganization relating to moving some core code from FlightGear into SimGear so it can be used by other projects. --- src/Autopilot/auto_gui.cxx | 1 - src/Cockpit/cockpit.cxx | 1 - src/Cockpit/sp_panel.cxx | 3 +- src/GUI/gui.cxx | 54 +- src/Joystick/joystick.cxx | 37 +- src/Main/Makefile.am | 4 +- src/Main/bfi.cxx | 18 +- src/Main/fg_init.cxx | 15 +- src/Main/keyboard.cxx | 27 +- src/Main/main.cxx | 41 +- src/Main/options.cxx | 28 +- src/Main/options.hxx | 25 +- src/Main/views.cxx | 2 +- src/Main/views.hxx | 2 +- src/Makefile.am | 1 - src/Network/garmin.cxx | 2 +- src/Network/native.cxx | 3 +- src/Network/nmea.cxx | 2 +- src/Network/pve.cxx | 2 +- src/Network/ray.cxx | 2 +- src/Network/rul.cxx | 2 +- src/Time/Makefile.am | 11 +- src/Time/event.hxx | 2 +- src/Time/fg_time.cxx | 548 ----------------- src/Time/fg_time.hxx | 170 ------ src/Time/fg_timer.cxx | 3 +- src/Time/geocoord.cxx | 102 ---- src/Time/geocoord.h | 98 ---- src/Time/light.cxx | 2 +- src/Time/lowleveltime.cxx | 1135 ------------------------------------ src/Time/lowleveltime.h | 128 ---- src/Time/moonpos.cxx | 4 +- src/Time/sunpos.cxx | 4 +- src/Time/timezone.cxx | 147 ----- src/Time/timezone.h | 72 --- 35 files changed, 152 insertions(+), 2546 deletions(-) delete mode 100644 src/Time/fg_time.cxx delete mode 100644 src/Time/fg_time.hxx delete mode 100644 src/Time/geocoord.cxx delete mode 100644 src/Time/geocoord.h delete mode 100644 src/Time/lowleveltime.cxx delete mode 100644 src/Time/lowleveltime.h delete mode 100644 src/Time/timezone.cxx delete mode 100644 src/Time/timezone.h diff --git a/src/Autopilot/auto_gui.cxx b/src/Autopilot/auto_gui.cxx index e662fadb6..51ae12e75 100644 --- a/src/Autopilot/auto_gui.cxx +++ b/src/Autopilot/auto_gui.cxx @@ -41,7 +41,6 @@ #include
#include
#include
-#include