667e64e1eb
- this exposed a bizarre issue on Mac where dragging in <AGL/agl.h> in extensions.hxx was pulling in all of Carbon to the global namespace - very scary. As a result, I now need to explicitly include CoreFoundation in fg_init.cxx. - change SG_USING_STD(x) to using std::x
21 lines
531 B
C++
21 lines
531 B
C++
#ifndef _2D_DATA_FILE_READER_H_
|
|
#define _2D_DATA_FILE_READER_H_
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
//#include STL_STRSTREAM
|
|
#include <sstream>
|
|
|
|
#include "uiuc_parsefile.h"
|
|
#include "uiuc_aircraft.h"
|
|
|
|
//using std::istrstream;
|
|
|
|
void uiuc_2DdataFileReader( string file_name,
|
|
double x[100][100],
|
|
double y[100],
|
|
double z[100][100],
|
|
int xmax[100],
|
|
int &ymax);
|
|
|
|
#endif // _2D_DATA_FILE_READER_H_
|