]> git.mxchange.org Git - flightgear.git/blob - Simulator/Time/fg_timer.hxx
Merge FG_Simulator as subdirectory
[flightgear.git] / Simulator / Time / fg_timer.hxx
1 /**************************************************************************
2  * fg_timer.hxx -- time handling routines
3  *
4  * Written by Curtis Olson, started June 1997.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _FG_TIMER_HXX
28 #define _FG_TIMER_HXX
29
30
31 #ifndef __cplusplus                                                          
32 # error This library requires C++
33 #endif                                   
34
35
36 extern unsigned long int fgSimTime;
37
38 /* this routine initializes the interval timer to generate a SIGALRM
39  * after the specified interval (dt) the function f() will be called
40  * at each signal */
41 void fgTimerInit( float dt, void (*f)( int ) );
42
43 /* This function returns the number of milleseconds since the last
44    time it was called. */
45 int fgGetTimeInterval( void );
46
47
48 #endif /* _FG_TIMER_HXX */
49
50
51 /* $Log$
52 /* Revision 1.1  1998/04/24 00:52:30  curt
53 /* Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
54 /* Fog color fixes.
55 /* Separated out lighting calcs into their own file.
56 /*
57  * Revision 1.5  1998/04/21 17:01:45  curt
58  * Fixed a problems where a pointer to a function was being passed around.  In
59  * one place this functions arguments were defined as ( void ) while in another
60  * place they were defined as ( int ).  The correct answer was ( int ).
61  *
62  * Prepairing for C++ integration.
63  *
64  * Revision 1.4  1998/01/22 02:59:43  curt
65  * Changed #ifdef FILE_H to #ifdef _FILE_H
66  *
67  * Revision 1.3  1998/01/19 18:40:40  curt
68  * Tons of little changes to clean up the code and to remove fatal errors
69  * when building with the c++ compiler.
70  *
71  * Revision 1.2  1997/07/23 21:52:27  curt
72  * Put comments around the text after an #endif for increased portability.
73  *
74  * Revision 1.1  1997/06/16 19:24:20  curt
75  * Initial revision.
76  *
77  */