From: Tim Moore Date: Mon, 19 Apr 2010 10:22:30 +0000 (+0200) Subject: Move using declaration out of header file X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3e4a592282543cb25c6babffb9aa70d46f44e055;p=flightgear.git Move using declaration out of header file --- diff --git a/src/Autopilot/xmlauto.cxx b/src/Autopilot/xmlauto.cxx index 1c1498d5c..fe51f37b1 100644 --- a/src/Autopilot/xmlauto.cxx +++ b/src/Autopilot/xmlauto.cxx @@ -40,6 +40,8 @@ using std::cout; using std::endl; +using simgear::PropertyList; + FGPeriodicalValue::FGPeriodicalValue( SGPropertyNode_ptr root ) { SGPropertyNode_ptr minNode = root->getChild( "min" ); diff --git a/src/Autopilot/xmlauto.hxx b/src/Autopilot/xmlauto.hxx index 45a90d56b..a29d49e23 100644 --- a/src/Autopilot/xmlauto.hxx +++ b/src/Autopilot/xmlauto.hxx @@ -49,8 +49,6 @@ and writes properties used only by a few aircraft. #include #include -using simgear::PropertyList; - typedef SGSharedPtr FGXMLAutoInput_ptr; typedef SGSharedPtr FGPeriodicalValue_ptr; @@ -124,7 +122,7 @@ class FGXMLAutoInputList : public std::vector { class FGXMLAutoComponent : public SGReferenced { private: - PropertyList output_list; + simgear::PropertyList output_list; SGSharedPtr _condition; SGPropertyNode_ptr enable_prop; @@ -203,7 +201,8 @@ public: // helpful for things like flight directors which position // their vbars from the autopilot computations. if ( honor_passive && passive_mode->getBoolValue() ) return; - for( PropertyList::iterator it = output_list.begin(); it != output_list.end(); ++it) + for( simgear::PropertyList::iterator it = output_list.begin(); + it != output_list.end(); ++it) (*it)->setDoubleValue( clamp( value ) ); } @@ -214,7 +213,8 @@ public: // helpful for things like flight directors which position // their vbars from the autopilot computations. if ( honor_passive && passive_mode->getBoolValue() ) return; - for( PropertyList::iterator it = output_list.begin(); it != output_list.end(); ++it) + for( simgear::PropertyList::iterator it = output_list.begin(); + it != output_list.end(); ++it) (*it)->setBoolValue( value ); // don't use clamp here, bool is clamped anyway }