]> git.mxchange.org Git - flightgear.git/blobdiff - src/Autopilot/autopilotgroup.cxx
Remove un-needed header.
[flightgear.git] / src / Autopilot / autopilotgroup.cxx
index c9df860d220a58da2a65b0442eae59204c5e94ad..c60ea3010a6d2f8c27dc6ee0f22d51f74bfcedcc 100644 (file)
@@ -49,6 +49,7 @@ public:
     virtual void addAutopilot( const std::string & name, SGPropertyNode_ptr apNode, SGPropertyNode_ptr config );
     virtual void removeAutopilot( const std::string & name );
     void init();
+    InitStatus incrementalInit();
     void reinit();
     void update( double dt );
 private:
@@ -101,6 +102,12 @@ void FGXMLAutopilotGroupImplementation::reinit()
     init();
 }
 
+SGSubsystem::InitStatus FGXMLAutopilotGroupImplementation::incrementalInit()
+{
+  init();
+  return INIT_DONE;
+}
+
 void FGXMLAutopilotGroupImplementation::init()
 {
     initFrom( fgGetNode( "/sim/systems" ), _nodeName.c_str() );