]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIBase.hxx
Mathias Fröhlich:
[flightgear.git] / src / AIModel / AIBase.hxx
index 831233edc9dd9c1cd0f476150c3b2759c29bd1c7..1bed52ab1d747c9220c82aad55fdb1c000d50ed5 100644 (file)
@@ -15,7 +15,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifndef _FG_AIBASE_HXX
 #define _FG_AIBASE_HXX
@@ -57,7 +57,7 @@ public:
     virtual void bind();
     virtual void unbind();
 
-    void setManager(FGAIManager* mgr);
+    void setManager(FGAIManager* mgr, SGPropertyNode* p);
     void setPath( const char* model );
     void setSpeed( double speed_KTAS );
     void setAltitude( double altitude_ft );
@@ -182,8 +182,9 @@ public:
     static bool _isNight();
 };
 
-inline void FGAIBase::setManager(FGAIManager* mgr) {
+inline void FGAIBase::setManager(FGAIManager* mgr, SGPropertyNode* p) {
   manager = mgr;
+  props = p;
 }
 
 inline void FGAIBase::setPath(const char* model ) {