]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIAircraft.hxx
Make some include dependencies explicit.
[flightgear.git] / src / AIModel / AIAircraft.hxx
index 7504aaecf504479329cbd9d49dfff78e5758b134..ea2d08e7cba1882f194590f49a74818c810a6680 100644 (file)
@@ -42,7 +42,6 @@ public:
 
     // virtual bool init(bool search_in_AI_path=false);
     virtual void bind();
-    virtual void unbind();
     virtual void update(double dt);
 
     void setPerformance(const std::string& perfString);
@@ -103,6 +102,7 @@ public:
     int getTakeOffStatus() { return takeOffStatus; };
 
     void checkTcas();
+    double calcVerticalSpeed(double vert_ft, double dist_m, double speed, double error);
 
     FGATCController * getATCController() { return controller; };
     
@@ -181,6 +181,8 @@ private:
     time_t timeElapsed;
 
     PerformanceData* _performance; // the performance data for this aircraft
+    
+   void assertSpeed(double speed);
 };