]> git.mxchange.org Git - flightgear.git/blob - Main/fg_init.hxx
MSVC++ portability tweaks contributed by Bernie Bright.
[flightgear.git] / Main / fg_init.hxx
1 //
2 // fg_init.hxx -- Flight Gear top level initialization routines
3 //
4 // Written by Curtis Olson, started August 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 #ifndef _FG_INIT_HXX
27 #define _FG_INIT_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 // General house keeping initializations
36 int fgInitGeneral ( void );
37
38
39 // This is the top level init routine which calls all the other
40 // initialization routines.  If you are adding a subsystem to flight
41 // gear, its initialization call should located in this routine.
42 int fgInitSubsystems( void );
43
44
45 #endif // _FG_INIT_H
46
47
48 // $Log$
49 // Revision 1.2  1998/04/25 15:11:12  curt
50 // Added an command line option to set starting position based on airport ID.
51 //
52 // Revision 1.1  1998/04/22 13:25:44  curt
53 // C++ - ifing the code.
54 // Starting a bit of reorganization of lighting code.
55 //
56 // Revision 1.4  1998/04/21 17:02:41  curt
57 // Prepairing for C++ integration.
58 //
59 // Revision 1.3  1998/02/12 21:59:50  curt
60 // Incorporated code changes contributed by Charlie Hotchkiss
61 // <chotchkiss@namg.us.anritsu.com>
62 //
63 // Revision 1.2  1998/01/22 02:59:38  curt
64 // Changed #ifdef FILE_H to #ifdef _FILE_H
65 //
66 // Revision 1.1  1997/08/23 01:46:20  curt
67 // Initial revision.
68 //