2000-03-22 22:01:33 +00:00
|
|
|
#ifndef _2D_DATA_FILE_READER_H_
|
|
|
|
#define _2D_DATA_FILE_READER_H_
|
|
|
|
|
2000-10-02 21:49:04 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
|
|
|
#include <strstream>
|
|
|
|
|
2000-03-22 22:01:33 +00:00
|
|
|
#include "uiuc_parsefile.h"
|
|
|
|
#include "uiuc_aircraft.h"
|
|
|
|
|
2000-12-13 23:02:02 +00:00
|
|
|
FG_USING_STD(istrstream);
|
|
|
|
|
2000-09-06 19:52:37 +00:00
|
|
|
void uiuc_2DdataFileReader( string file_name,
|
|
|
|
double x[100][100],
|
|
|
|
double y[100],
|
|
|
|
double z[100][100],
|
|
|
|
int xmax[100],
|
|
|
|
int &ymax);
|
2000-03-22 22:01:33 +00:00
|
|
|
|
|
|
|
#endif // _2D_DATA_FILE_READER_H_
|