]> 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 8d831cba5658674d43154581be647e027b3c4693..f39b8c6c0bde91decc710428f840c651bdee0512 100644 (file)
@@ -1,20 +1,21 @@
 #ifndef _PARSE_FILE_H_
 #define _PARSE_FILE_H_
 
+#include <simgear/compiler.h>
+
 #include <string>
 #include <list>
 #include <fstream>
 
-#include <simgear/compiler.h>
-
-FG_USING_STD(list);
-FG_USING_STD(string);
-FG_USING_STD(ifstream);
+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"