1
0
Fork 0
flightgear/src/FDM/UIUCModel/uiuc_menu_functions.h
timoore 32e9505eed Clean up header file use of iostream and "using" declarations
Replace include <iostream> with istream, ostream and/or iosfwd as
appropriate.

Remove using namespace std and using std::foo from header files.
2008-06-02 21:09:51 +00:00

17 lines
529 B
C++

#ifndef _MENU_FUNCTIONS_H_
#define _MENU_FUNCTIONS_H_
#include "uiuc_aircraft.h"
#include <simgear/compiler.h>
#include <string>
void d_2_to_3( double array2D[100][100], double array3D[][100][100], int index3D);
void d_1_to_2( double array1D[100], double array2D[][100], int index2D);
void d_1_to_1( double array1[100], double array2[100] );
void i_1_to_2( int array1D[100], int array2D[][100], int index2D);
bool check_float( const std::string &token);
//bool check_float( const string &token);
#endif //_MENU_FUNCTIONS_H_