Tweaks to follow flightgear STL standard coding procedure.

This commit is contained in:
curt
2001-03-06 19:57:56 +00:00
parent 9f516a8ccc
commit f1ab6e2533
4 changed files with 23 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
// Metar report implementation class code
#include <simgear/compiler.h>
#include STL_IOSTREAM
#include "MetarReport.h"
#include "Metar.h"

View 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>
FG_USING_STD(string);
class CMetarReport
{
// Typedefs, enumerations

View File

@@ -1,5 +1,8 @@
// Metar station implementation code
#include <simgear/compiler.h>
#include STL_IOSTREAM
#include <stdio.h>
#include "MetarStation.h"

View File

@@ -8,13 +8,19 @@
#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;