]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_menu_functions.h
Make yasim accept the launchbar and hook properties. They are not tied to anything...
[flightgear.git] / src / FDM / UIUCModel / uiuc_menu_functions.h
1
2 #ifndef _MENU_FUNCTIONS_H_
3 #define _MENU_FUNCTIONS_H_
4
5 #include "uiuc_aircraft.h"
6 #include <simgear/compiler.h>
7
8 #include <string>
9 #include STL_IOSTREAM
10 //#include STL_STRSTREAM
11 #include <sstream>
12
13 //SG_USING_STD(istrstream);
14
15 void d_2_to_3( double array2D[100][100], double array3D[][100][100], int index3D);
16 void d_1_to_2( double array1D[100], double array2D[][100], int index2D);
17 void d_1_to_1( double array1[100], double array2[100] );
18 void i_1_to_2( int array1D[100], int array2D[][100], int index2D);
19 bool check_float( const string &token);
20 //bool check_float( const string &token);
21
22 #endif //_MENU_FUNCTIONS_H_