]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIBase.hxx
Use api's with objects instead of scalars.
[flightgear.git] / src / AIModel / AIBase.hxx
index ec55ce998d56d6c384a2424b7a5836484e2aab81..46d287f732778dd4397f07fb6bf7cf6fccba2057 100644 (file)
@@ -25,7 +25,6 @@
 
 #include <simgear/constants.h>
 #include <simgear/math/SGMath.hxx>
-#include <simgear/math/point3d.hxx>
 #include <simgear/scene/model/placement.hxx>
 #include <simgear/misc/sg_path.hxx>
 #include <simgear/structure/SGSharedPtr.hxx>
@@ -34,8 +33,8 @@
 #include <Main/fg_props.hxx>
 
 
-SG_USING_STD(string);
-SG_USING_STD(list);
+using std::string;
+using std::list;
 
 class FGAIManager;
 class FGAIFlightPlan;
@@ -192,6 +191,7 @@ protected:
 private:
     int _refID;
     object_type _otype;
+    bool _initialized;
 
 public:
     object_type getType();