2000-03-22 22:01:33 +00:00
|
|
|
#ifndef _1D_DATA_FILE_READER_H_
|
|
|
|
#define _1D_DATA_FILE_READER_H_
|
|
|
|
|
2000-10-02 21:49:04 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2001-04-13 21:00:07 +00:00
|
|
|
#include STL_STRSTREAM
|
2000-10-02 21:49:04 +00:00
|
|
|
|
2000-03-22 22:01:33 +00:00
|
|
|
#include "uiuc_parsefile.h"
|
|
|
|
#include "uiuc_aircraft.h"
|
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(istrstream);
|
2000-12-13 23:02:02 +00:00
|
|
|
|
2000-03-22 22:01:33 +00:00
|
|
|
int uiuc_1DdataFileReader( string file_name,
|
2000-09-06 19:52:37 +00:00
|
|
|
double x[100],
|
|
|
|
double y[100],
|
|
|
|
int &xmax );
|
2002-11-08 17:03:49 +00:00
|
|
|
int uiuc_1DdataFileReader( string file_name,
|
|
|
|
double x[],
|
|
|
|
int y[],
|
|
|
|
int &xmax );
|
2000-03-22 22:01:33 +00:00
|
|
|
|
|
|
|
#endif // _1D_DATA_FILE_READER_H_
|