7289eaa8ba
I have attached some revisions for the UIUCModel and some LaRCsim. The only thing you should need to check is LaRCsim.cxx. The file I attached is a revised version of 1.5 and the latest is 1.7. Also, uiuc_getwind.c and uiuc_getwind.h are no longer in the LaRCsim directory. They have been moved over to UIUCModel.
23 lines
541 B
C
23 lines
541 B
C
#ifndef _1D_DATA_FILE_READER_H_
|
|
#define _1D_DATA_FILE_READER_H_
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
#include STL_STRSTREAM
|
|
|
|
#include "uiuc_parsefile.h"
|
|
#include "uiuc_aircraft.h"
|
|
#include "uiuc_warnings_errors.h"
|
|
|
|
SG_USING_STD(istrstream);
|
|
|
|
int uiuc_1DdataFileReader( string file_name,
|
|
double x[],
|
|
double y[],
|
|
int &xmax );
|
|
int uiuc_1DdataFileReader( string file_name,
|
|
double x[],
|
|
int y[],
|
|
int &xmax );
|
|
|
|
#endif // _1D_DATA_FILE_READER_H_
|