]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UIUCModel/uiuc_parsefile.h
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / FDM / UIUCModel / uiuc_parsefile.h
index 78e8cbba0fec1d08776e81e0456ec179be299ab6..f39b8c6c0bde91decc710428f840c651bdee0512 100644 (file)
@@ -5,19 +5,17 @@
 
 #include <string>
 #include <list>
-#include STL_FSTREAM
+#include <fstream>
 
-SG_USING_STD(list);
-SG_USING_STD(string);
-SG_USING_STD(getline);
-#if !defined (SG_HAVE_NATIVE_SGI_COMPILERS)
-SG_USING_STD(ifstream);
-#endif
+using std::list;
+using std::string;
+using std::getline;
+using std::ifstream;
 
 #define DELIMITERS " \t"
 #define COMMENT "#"
 
-#define MAXLINE 200   // Max size of the line of the input file
+#define MAXLINE 400   // Max size of the line of the input file
 
 typedef list<string> stack; //list to contain the input file "command_lines"