]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UIUCModel/uiuc_parsefile.h
Make yasim accept the launchbar and hook properties. They are not tied to anything...
[flightgear.git] / src / FDM / UIUCModel / uiuc_parsefile.h
index 1dea4d449f44918d97c21b8446fa981e4ceae9ca..01793842158b6b6b66fad4a6533d5dc3a5fb647c 100644 (file)
@@ -5,16 +5,17 @@
 
 #include <string>
 #include <list>
-#include <fstream>
+#include STL_FSTREAM
 
-FG_USING_STD(list);
-FG_USING_STD(string);
-FG_USING_STD(ifstream);
+SG_USING_STD(list);
+SG_USING_STD(string);
+SG_USING_STD(getline);
+SG_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"