#endif
#include <simgear/compiler.h>
+
#include <simgear/misc/fgpath.hxx>
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/props.hxx>
-#include <iostream>
-#include <fstream>
-#include <string>
+#include STL_IOSTREAM
+#include STL_FSTREAM
+#include STL_STRING
#include <Main/globals.hxx>
#include <Main/fg_props.hxx>
#include "steam.hxx"
#include "panel_io.hxx"
+#if !defined (FG_HAVE_NATIVE_SGI_COMPILERS)
FG_USING_STD(istream);
FG_USING_STD(ifstream);
+#endif
FG_USING_STD(string);
type = "rotation";
}
- if (propName != "") {
+ if (propName != (string)"") {
value = fgGetValue(propName, true);
}
# include <windows.h>
#endif
-#include <iostream>
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
#include "panel.hxx"
-using std::istream;
+#if !defined (FG_HAVE_NATIVE_SGI_COMPILERS)
+FG_USING_STD(istream);
+#endif
extern FGPanel * fgReadPanel (istream &input);
extern FGPanel * fgReadPanel (const string &relative_path);