]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AITanker.hxx
commradio: improvements for atis speech
[flightgear.git] / src / AIModel / AITanker.hxx
index dcb812e44a49cdb939559d9aa8622f82b911d1fd..fcea6a28fcd1ad2a2dd6ff6eb9cb937436eb887c 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef FGAITANKER_HXX
 #define FGAITANKER_HXX
 
-#include <AIAircraft.hxx>
+#include "AIAircraft.hxx"
 
 /**
  * An AI tanker for air-air refueling.
@@ -41,14 +41,13 @@ public:
 
     virtual void readFromScenario(SGPropertyNode* scFileNode);
     virtual void bind();
-    virtual void unbind();
 
     virtual const char* getTypeString(void) const { return "tanker"; }
 
-    void setTACANChannelID(const string& id);
+    void setTACANChannelID(const std::string& id);
     
 private:
-    string TACAN_channel_id;     // The TACAN channel of this tanker
+    std::string TACAN_channel_id;     // The TACAN channel of this tanker
     bool contact;                // set if this tanker is within fuelling range
 
     virtual void Run(double dt);