1
0
Fork 0
flightgear/src/FDM/UIUCModel/uiuc_2DdataFileReader.h
ehofman 667e64e1eb - remove the SG_GLxxxx_H #defines, since OSG provides its own versions
- 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
2008-07-27 16:25:13 +00:00

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_