1
0
Fork 0

small cleanup to vivian's patch

This commit is contained in:
Tim Moore 2009-12-09 09:23:20 +01:00
parent 3922c12163
commit 582a95f0cb
6 changed files with 29 additions and 17 deletions

View file

@ -2729,6 +2729,13 @@
<File
RelativePath="..\..\src\AIModel\AICarrier.hxx">
</File>
<File
RelativePath="..\..\src\AIModel\AIEscort.cxx">
</File>
<File
RelativePath="..\..\src\AIModel\AIEscort.hxx">
</File>
<File
RelativePath="..\..\src\AIModel\AIFlightPlan.cxx">
</File>

View file

@ -3901,6 +3901,14 @@
RelativePath="..\..\..\src\AIModel\AICarrier.hxx"
>
</File>
<File
RelativePath="..\..\..\src\AIModel\AIEscort.cxx"
>
</File>
<File
RelativePath="..\..\..\src\AIModel\AIEscort.hxx"
>
</File>
<File
RelativePath="..\..\..\src\AIModel\AIFlightPlan.cxx"
>

View file

@ -39,6 +39,8 @@
#include "AIEscort.hxx"
using std::string;
FGAIEscort::FGAIEscort() :
FGAIShip(otEscort),

View file

@ -26,9 +26,6 @@
#include <simgear/compiler.h>
using std::string;
using std::list;
#include "AIBase.hxx"
#include "AIShip.hxx"
@ -53,7 +50,7 @@ private:
virtual void reinit() { init(); }
virtual void update (double dt);
void setParentName(const string& p);
void setParentName(const std::string& p);
void setParent();
void setStnRange(double r);
void setStnBrg(double y);
@ -102,7 +99,7 @@ private:
bool _MPControl, _patrol, _stn_deg_true;
string _parent;
std::string _parent;
};

View file

@ -33,11 +33,9 @@
#include <simgear/environment/visual_enviro.hxx>
#include <vector>
#include <queue>
#include <string>
using std::vector;
using std::queue;
using std::string;
class FGODGauge;