]> git.mxchange.org Git - flightgear.git/blobdiff - Simulator/Time/event.cxx
Initial revision.
[flightgear.git] / Simulator / Time / event.cxx
index 2b43a446040075b096fcf9eb36c14f46e7c5924d..680eac6d885e50c3ddcb3f0cd577bb785bfc3023 100644 (file)
@@ -19,7 +19,6 @@
 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 //
 // $Id$
-// (Log is kept at end of this file)
 
 
 #ifdef HAVE_CONFIG_H
@@ -305,161 +304,3 @@ fgEVENT_MGR::~fgEVENT_MGR( void ) {
 }
 
 
-// $Log$
-// Revision 1.1  1999/04/05 21:32:47  curt
-// Initial revision
-//
-// Revision 1.17  1999/01/27 04:50:18  curt
-// Move sun/solaris specific stuff to compiler.h
-//
-// Revision 1.16  1999/01/21 20:14:18  curt
-// Sun portability hack.
-//
-// Revision 1.15  1999/01/09 13:37:42  curt
-// Convert fgTIMESTAMP to FGTimeStamp which holds usec instead of ms.
-//
-// Revision 1.14  1999/01/07 20:25:32  curt
-// Portability changes and updates from Bernie Bright.
-//
-// Revision 1.13  1998/12/04 01:32:46  curt
-// Converted "struct fg_timestamp" to "class fgTIMESTAMP" and added some
-// convenience inline operators.
-//
-// Revision 1.12  1998/11/23 21:49:07  curt
-// Borland portability tweaks.
-//
-// Revision 1.11  1998/11/09 23:41:51  curt
-// Log message clean ups.
-//
-// Revision 1.10  1998/11/07 19:07:13  curt
-// Enable release builds using the --without-logging option to the configure
-// script.  Also a couple log message cleanups, plus some C to C++ comment
-// conversion.
-//
-// Revision 1.9  1998/11/06 21:18:24  curt
-// Converted to new logstream debugging facility.  This allows release
-// builds with no messages at all (and no performance impact) by using
-// the -DFG_NDEBUG flag.
-//
-// Revision 1.8  1998/09/15 02:09:29  curt
-// Include/fg_callback.hxx
-//   Moved code inline to stop g++ 2.7 from complaining.
-//
-// Simulator/Time/event.[ch]xx
-//   Changed return type of fgEVENT::printStat().  void caused g++ 2.7 to
-//   complain bitterly.
-//
-// Minor bugfix and changes.
-//
-// Simulator/Main/GLUTmain.cxx
-//   Added missing type to idle_state definition - eliminates a warning.
-//
-// Simulator/Main/fg_init.cxx
-//   Changes to airport lookup.
-//
-// Simulator/Main/options.cxx
-//   Uses fg_gzifstream when loading config file.
-//
-// Revision 1.7  1998/08/29 13:11:31  curt
-// Bernie Bright writes:
-//   I've created some new classes to enable pointers-to-functions and
-//   pointers-to-class-methods to be treated like objects.  These objects
-//   can be registered with fgEVENT_MGR.
-//
-//   File "Include/fg_callback.hxx" contains the callback class defns.
-//
-//   Modified fgEVENT and fgEVENT_MGR to use the callback classes.  Also
-//   some minor tweaks to STL usage.
-//
-//   Added file "Include/fg_stl_config.h" to deal with STL portability
-//   issues.  I've added an initial config for egcs (and probably gcc-2.8.x).
-//   I don't have access to Visual C++ so I've left that for someone else.
-//   This file is influenced by the stl_config.h file delivered with egcs.
-//
-//   Added "Include/auto_ptr.hxx" which contains an implementation of the
-//   STL auto_ptr class which is not provided in all STL implementations
-//   and is needed to use the callback classes.
-//
-//   Deleted fgLightUpdate() which was just a wrapper to call
-//   fgLIGHT::Update().
-//
-//   Modified fg_init.cxx to register two method callbacks in place of the
-//   old wrapper functions.
-//
-// Revision 1.6  1998/08/20 15:12:26  curt
-// Tweak ...
-//
-// Revision 1.5  1998/06/12 00:59:52  curt
-// Build only static libraries.
-// Declare memmove/memset for Sloaris.
-// Rewrote fg_time.c routine to get LST start seconds to better handle
-//   Solaris, and be easier to port, and understand the GMT vs. local
-//   timezone issues.
-//
-// Revision 1.4  1998/06/05 18:18:12  curt
-// Incorporated some automake conditionals to try to support mktime() correctly
-// on a wider variety of platforms.
-// Added the declaration of memmove needed by the stl which apparently
-// solaris only defines for cc compilations and not for c++ (__STDC__)
-//
-// Revision 1.3  1998/05/22 21:14:53  curt
-// Rewrote event.cxx in C++ as a class using STL for the internal event list
-// and run queue this removes the arbitrary list sizes and makes things much
-// more dynamic.  Because this is C++-classified we can now have multiple
-// event_tables if we'd ever want them.
-//
-// Revision 1.2  1998/04/25 22:06:33  curt
-// Edited cvs log messages in source files ... bad bad bad!
-//
-// Revision 1.1  1998/04/24 00:52:26  curt
-// Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
-// Fog color fixes.
-// Separated out lighting calcs into their own file.
-//
-// Revision 1.13  1998/04/18 04:14:08  curt
-// Moved fg_debug.c to it's own library.
-//
-// Revision 1.12  1998/04/09 18:40:13  curt
-// We had unified some of the platform disparate time handling code, and
-// there was a bug in timesum() which calculated a new time stamp based on
-// the current time stamp + offset.  This hosed the periodic event processing
-// logic because you'd never arrive at the time the event was scheduled for.
-// Sky updates and lighting changes are handled via this event mechanism so
-// they never changed ... it is fixed now.
-//
-// Revision 1.11  1998/04/03 22:12:55  curt
-// Converting to Gnu autoconf system.
-// Centralized time handling differences.
-//
-// Revision 1.10  1998/03/14 00:28:34  curt
-// replaced a printf() with an fgPrintf().
-//
-// Revision 1.9  1998/01/31 00:43:44  curt
-// Added MetroWorks patches from Carmen Volpe.
-//
-// Revision 1.8  1998/01/27 00:48:05  curt
-// Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
-// system and commandline/config file processing code.
-//
-// Revision 1.7  1998/01/19 19:27:19  curt
-// Merged in make system changes from Bob Kuehne <rpk@sgi.com>
-// This should simplify things tremendously.
-//
-// Revision 1.6  1998/01/19 18:40:39  curt
-// Tons of little changes to clean up the code and to remove fatal errors
-// when building with the c++ compiler.
-//
-// Revision 1.5  1998/01/06 01:20:27  curt
-// Tweaks to help building with MSVC++
-//
-// Revision 1.4  1997/12/31 17:46:50  curt
-// Tweaked fg_time.c to be able to use ftime() instead of gettimeofday()
-//
-// Revision 1.3  1997/12/30 22:22:42  curt
-// Further integration of event manager.
-//
-// Revision 1.2  1997/12/30 20:47:58  curt
-// Integrated new event manager with subsystem initializations.
-//
-// Revision 1.1  1997/12/30 04:19:22  curt
-// Initial revision.