]> 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 d314043da35fe10ce9553e5cf0dae7193d6ecc1f..7021554e7165405909e134d150a4c3364b9a0a98 100644 (file)
@@ -3,18 +3,18 @@
 
 #include <simgear/compiler.h>
 
-#include STL_STRSTREAM
+//#include STL_STRSTREAM
+#include <sstream>
 
 #include "uiuc_parsefile.h"
 #include "uiuc_aircraft.h"
+#include "uiuc_warnings_errors.h"
 
-#if !defined (SG_HAVE_NATIVE_SGI_COMPILERS)
-SG_USING_STD(istrstream);
-#endif
+//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[],