]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UIUCModel/uiuc_1DdataFileReader.h
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / FDM / UIUCModel / uiuc_1DdataFileReader.h
index 09973ce74705c8859a83f1347892b80e026e63e2..7021554e7165405909e134d150a4c3364b9a0a98 100644 (file)
@@ -3,14 +3,22 @@
 
 #include <simgear/compiler.h>
 
-#include <strstream>
+//#include STL_STRSTREAM
+#include <sstream>
 
 #include "uiuc_parsefile.h"
 #include "uiuc_aircraft.h"
+#include "uiuc_warnings_errors.h"
+
+//using std::istrstream;
 
 int uiuc_1DdataFileReader( string file_name, 
-                            double x[100], 
-                            double y[100], 
+                            double x[], 
+                            double y[], 
                             int &xmax );
+int uiuc_1DdataFileReader( string file_name, 
+                          double x[], 
+                          int y[], 
+                          int &xmax );
 
 #endif // _1D_DATA_FILE_READER_H_