]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_initializemaps.cpp
Sep 1 2000 updates from the UIUC team.
[flightgear.git] / src / FDM / UIUCModel / uiuc_initializemaps.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_initializemaps.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the maps for various keywords 
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      01/26/2000   initial release
20                04/08/2000   broke up into multiple map_xxxx functions
21
22 ----------------------------------------------------------------------
23  
24  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
25                Jeff Scott         <jscott@mail.com>
26  
27 ----------------------------------------------------------------------
28  
29  VARIABLES:
30  
31 ----------------------------------------------------------------------
32  
33  INPUTS:       none
34  
35 ----------------------------------------------------------------------
36  
37  OUTPUTS:      none
38  
39 ----------------------------------------------------------------------
40  
41  CALLED BY:    uiuc_wrapper.cpp
42  
43 ----------------------------------------------------------------------
44  
45  CALLS TO:     none
46  
47 ----------------------------------------------------------------------
48  
49  COPYRIGHT:    (C) 2000 by Michael Selig
50  
51  This program is free software; you can redistribute it and/or
52  modify it under the terms of the GNU General Public License
53  as published by the Free Software Foundation.
54  
55  This program is distributed in the hope that it will be useful,
56  but WITHOUT ANY WARRANTY; without even the implied warranty of
57  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
58  GNU General Public License for more details.
59  
60  You should have received a copy of the GNU General Public License
61  along with this program; if not, write to the Free Software
62  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
63  USA or view http://www.gnu.org/copyleft/gpl.html.
64  
65 **********************************************************************/
66
67 #include "uiuc_initializemaps.h"
68
69
70 void uiuc_initializemaps()
71 {
72   uiuc_map_keyword();
73   uiuc_map_init();
74   uiuc_map_geometry();
75   uiuc_map_controlSurface();
76   uiuc_map_mass();
77   uiuc_map_engine();
78   uiuc_map_CD();
79   uiuc_map_CL();
80   uiuc_map_Cm();
81   uiuc_map_CY();
82   uiuc_map_Croll();
83   uiuc_map_Cn();
84   //  uiuc_map_gear();
85   uiuc_map_ice();
86   uiuc_map_record1();
87   uiuc_map_record2();
88   uiuc_map_record3();
89   uiuc_map_record4();
90   uiuc_map_record5();
91   uiuc_map_misc();
92 }
93
94 // end uiuc_initializemaps.cpp