]> git.mxchange.org Git - flightgear.git/commitdiff
Move using declaration out of header file
authorTim Moore <timoore33@gmail.com>
Mon, 19 Apr 2010 10:22:30 +0000 (12:22 +0200)
committerTim Moore <timoore33@gmail.com>
Mon, 19 Apr 2010 10:22:30 +0000 (12:22 +0200)
src/Autopilot/xmlauto.cxx
src/Autopilot/xmlauto.hxx

index 1c1498d5c6cf0910befce01edebbf4fa69f848ac..fe51f37b126023009edb8514ab1685e344e27b15 100644 (file)
@@ -40,6 +40,8 @@
 using std::cout;
 using std::endl;
 
+using simgear::PropertyList;
+
 FGPeriodicalValue::FGPeriodicalValue( SGPropertyNode_ptr root )
 {
   SGPropertyNode_ptr minNode = root->getChild( "min" );
index 45a90d56bfaf954ea2be6f9c3194742ff378abef..a29d49e236b827f86030bc01e1cb200d694ccced 100644 (file)
@@ -49,8 +49,6 @@ and writes properties used only by a few aircraft.
 #include <simgear/structure/subsystem_mgr.hxx>
 #include <simgear/props/condition.hxx>
 
-using simgear::PropertyList;
-
 typedef SGSharedPtr<class FGXMLAutoInput> FGXMLAutoInput_ptr;
 typedef SGSharedPtr<class FGPeriodicalValue> FGPeriodicalValue_ptr;
 
@@ -124,7 +122,7 @@ class FGXMLAutoInputList : public std::vector<FGXMLAutoInput_ptr> {
 class FGXMLAutoComponent : public SGReferenced {
 
 private:
-    PropertyList output_list;
+    simgear::PropertyList output_list;
 
     SGSharedPtr<const SGCondition> _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
     }