// Metar report implementation class code
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
+
#include "MetarReport.h"
#include "Metar.h"
#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>
+FG_USING_STD(string);
+
class CMetarReport
{
// Typedefs, enumerations
// Metar station implementation code
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
#include <stdio.h>
#include "MetarStation.h"
#ifndef _MetarStation_
#define _MetarStation_
-#include <iostream>
-#include <string>
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
+#include STL_STRING
#include <vector>
#include <map>
+
#include <simgear/math/point3d.hxx>
#include <simgear/math/polar3d.hxx>
-//using namespace std;
+
+FG_USING_STD(string);
+FG_USING_STD(vector);
+FG_USING_STD(map);
class CMetarStationDB;