]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_aircraftdir.h
First quick hack at panel shading.
[flightgear.git] / src / FDM / UIUCModel / uiuc_aircraftdir.h
1 /**********************************************************************
2
3  FILENAME:     uiuc_aircraftdir.h
4
5 ----------------------------------------------------------------------
6
7  DESCRIPTION: Stores the name of the aircraft directory to be used
8
9 ----------------------------------------------------------------------
10
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14
15  REFERENCES:   
16
17 ----------------------------------------------------------------------
18
19  HISTORY:      02/22/2000    initial release
20
21 ----------------------------------------------------------------------
22
23  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
24
25 ----------------------------------------------------------------------
26
27  VARIABLES:
28
29 ----------------------------------------------------------------------
30
31  INPUTS:       *
32
33 ----------------------------------------------------------------------
34
35  OUTPUTS:      *
36
37 ----------------------------------------------------------------------
38
39  CALLED BY:    *
40
41 ----------------------------------------------------------------------
42
43  CALLS TO:     *
44
45 ----------------------------------------------------------------------
46
47  COPYRIGHT:    (C) 2000 by Michael Selig
48
49  This program is free software; you can redistribute it and/or
50  modify it under the terms of the GNU General Public License
51  as published by the Free Software Foundation.
52
53  This program is distributed in the hope that it will be useful,
54  but WITHOUT ANY WARRANTY; without even the implied warranty of
55  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
56  GNU General Public License for more details.
57
58  You should have received a copy of the GNU General Public License
59  along with this program; if not, write to the Free Software
60  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
61  USA or view http://www.gnu.org/copyleft/gpl.html.
62
63 **********************************************************************/
64
65
66 #ifndef _AIRCRAFTDIR_H_
67 #define _AIRCRAFTDIR_H_
68
69 #include <string>
70
71 typedef struct 
72 {
73     string real_aircraft_dir;
74     #define aircraft_dir aircraftdir_->real_aircraft_dir
75   
76 } AIRCRAFTDIR;
77
78 // usually defined in the first program that includes uiuc_aircraft.h
79 extern AIRCRAFTDIR *aircraftdir_;
80
81 #endif  // endif _AIRCRAFTDIR_H