]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_keyword.cpp
77dcad76be8ef8da9af5dcdef58c2cbe006f20a2
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_keyword.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_map_keyword.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the main keyword map
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      04/08/2000   initial release
20
21 ----------------------------------------------------------------------
22  
23  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
24                Jeff Scott         <jscott@mail.com>
25  
26 ----------------------------------------------------------------------
27  
28  VARIABLES:
29  
30 ----------------------------------------------------------------------
31  
32  INPUTS:       none
33  
34 ----------------------------------------------------------------------
35  
36  OUTPUTS:      none
37  
38 ----------------------------------------------------------------------
39  
40  CALLED BY:    uiuc_initializemaps.cpp
41  
42 ----------------------------------------------------------------------
43  
44  CALLS TO:     none
45  
46 ----------------------------------------------------------------------
47  
48  COPYRIGHT:    (C) 2000 by Michael Selig
49  
50  This program is free software; you can redistribute it and/or
51  modify it under the terms of the GNU General Public License
52  as published by the Free Software Foundation.
53  
54  This program is distributed in the hope that it will be useful,
55  but WITHOUT ANY WARRANTY; without even the implied warranty of
56  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57  GNU General Public License for more details.
58  
59  You should have received a copy of the GNU General Public License
60  along with this program; if not, write to the Free Software
61  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
62  USA or view http://www.gnu.org/copyleft/gpl.html.
63  
64 **********************************************************************/
65
66 #include "uiuc_map_keyword.h"
67
68
69 void uiuc_map_keyword()
70 {
71   Keyword_map["init"]             =      init_flag                  ;
72   Keyword_map["geometry"]         =      geometry_flag              ;
73   Keyword_map["controlSurface"]   =      controlSurface_flag        ;
74   Keyword_map["mass"]             =      mass_flag                  ;
75   Keyword_map["engine"]           =      engine_flag                ;
76   Keyword_map["CD"]               =      CD_flag                    ;
77   Keyword_map["CL"]               =      CL_flag                    ;
78   Keyword_map["Cm"]               =      Cm_flag                    ;
79   Keyword_map["CY"]               =      CY_flag                    ;
80   Keyword_map["Cl"]               =      Cl_flag                    ;
81   Keyword_map["Cn"]               =      Cn_flag                    ;
82   Keyword_map["gear"]             =      gear_flag                  ;
83   Keyword_map["ice"]              =      ice_flag                   ;
84   Keyword_map["record"]           =      record_flag                ;
85   Keyword_map["misc"]             =      misc_flag                  ;
86   Keyword_map["fog"]              =      fog_flag                   ;
87 }
88
89 // end uiuc_map_keyword.cpp