X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2Fsubmodel.hxx;h=7ca046f9dc0789f8334c3a572634772d7635ea15;hb=7e73a8788223c9c2af3c26435162e0667b412279;hp=87beb5945493f0d5165db33f752e4e9f25315427;hpb=2e1756156ff9ba0546913973ad72806186c6ed4c;p=flightgear.git diff --git a/src/AIModel/submodel.hxx b/src/AIModel/submodel.hxx index 87beb5945..7ca046f9d 100644 --- a/src/AIModel/submodel.hxx +++ b/src/AIModel/submodel.hxx @@ -19,9 +19,9 @@ #include
-SG_USING_STD(vector); -SG_USING_STD(string); -SG_USING_STD(list); +using std::vector; +using std::string; +using std::list; class FGAIBase; @@ -68,6 +68,9 @@ public: double fuse_range; string submodel; int sub_id; + bool force_stabilised; + bool ext_force; + string force_path; } submodel; typedef struct { @@ -115,9 +118,9 @@ private: float in[3]; float out[3]; - double Rx, Ry, Rz; - double Sx, Sy, Sz; - double Tx, Ty, Tz; + //double Rx, Ry, Rz; + //double Sx, Sy, Sz; + //double Tx, Ty, Tz; float cosRx, sinRx; float cosRy, sinRy; @@ -171,7 +174,7 @@ private: IC_struct IC; // A list of pointers to AI objects - typedef list > sm_list_type; + typedef list > sm_list_type; typedef sm_list_type::iterator sm_list_iterator; typedef sm_list_type::const_iterator sm_list_const_iterator;