]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_1DdataFileReader.h
Updated to match changes in radiostack.[ch]xx
[flightgear.git] / src / FDM / UIUCModel / uiuc_1DdataFileReader.h
1 #ifndef _1D_DATA_FILE_READER_H_
2 #define _1D_DATA_FILE_READER_H_
3
4 #include <simgear/compiler.h>
5
6 #include STL_STRSTREAM
7
8 #include "uiuc_parsefile.h"
9 #include "uiuc_aircraft.h"
10
11 #if !defined (SG_HAVE_NATIVE_SGI_COMPILERS)
12 SG_USING_STD(istrstream);
13 #endif
14
15 int uiuc_1DdataFileReader( string file_name, 
16                             double x[100], 
17                             double y[100], 
18                             int &xmax );
19
20 #endif // _1D_DATA_FILE_READER_H_