]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/panel_io.hxx
Fixed an property tieing issue on sim reset.
[flightgear.git] / src / Cockpit / panel_io.hxx
index 839f0a810fd67295bffb429418d4af9f94ec4fee..5d5fd09fbc550a7b7e6572b293aaf79147450942 100644 (file)
 #  include <config.h>
 #endif
 
-#ifdef HAVE_WINDOWS_H          
-#  include <windows.h>
-#endif
-
 #include <simgear/compiler.h>
 
-#include STL_IOSTREAM
-
-SG_USING_STD(istream);
+#include <iosfwd>
+#include <string>
 
 class FGPanel;
 
-extern FGPanel * fgReadPanel (istream &input);
-extern FGPanel * fgReadPanel (const string &relative_path);
+extern FGPanel * fgReadPanel (std::istream &input);
+extern FGPanel * fgReadPanel (const std::string &relative_path);
 
 #endif // __PANEL_IO_HXX