X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAITanker.hxx;h=fcea6a28fcd1ad2a2dd6ff6eb9cb937436eb887c;hb=d035fdf3a949e62f0c8e772e100d14087b6d4ba9;hp=ce4329a2c0a49b3ee29c89d71d650dd2692b0d83;hpb=291462c25e01bb57372e8bbdfea828e6559ebd07;p=flightgear.git diff --git a/src/AIModel/AITanker.hxx b/src/AIModel/AITanker.hxx index ce4329a2c..fcea6a28f 100644 --- a/src/AIModel/AITanker.hxx +++ b/src/AIModel/AITanker.hxx @@ -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);