]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIEscort.hxx
Trivial cleanup commit, to test continuous integration server.
[flightgear.git] / src / AIModel / AIEscort.hxx
index fec8498673aba6967c56f8d249e7a95cd61c5d80..d5adff5d53693c90096f8d91aa5cd5c1817c6655 100644 (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);
@@ -98,11 +95,11 @@ private:
     double _max_speed;
 
     const SGMaterial* _material;
-    const SGPropertyNode *_selected_ac;
+    SGPropertyNode_ptr _selected_ac;
 
     bool _MPControl, _patrol, _stn_deg_true;
 
-    string _parent;
+    std::string _parent;
 
 };