]> git.mxchange.org Git - simgear.git/blobdiff - simgear/metar/MetarReport.h
- Refactoring configure.ac a bit to use $host (please test on your platform)
[simgear.git] / simgear / metar / MetarReport.h
index 0d5f4cd20a638d70a11734a6429af2796e6883a0..21715a37eaf936f2aa64f324ce148b9257118756 100644 (file)
@@ -7,12 +7,17 @@
 #ifndef _MetarReport_
 #define _MetarReport_
 
-#include <iostream>
-#include <string>
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
+#include STL_STRING
 #include <vector>
+
 #include <simgear/math/point3d.hxx>
 #include <simgear/math/polar3d.hxx>
 
+SG_USING_STD(string);
+
 class CMetarReport
 {
        // Typedefs, enumerations
@@ -112,6 +117,6 @@ private:
                        // Assignment operator.  Not implemented.
 };
 
-std::ostream& operator << ( std::ostream&, CMetarReport& );
+ostream& operator << ( ostream&, CMetarReport& );
 
 #endif