]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/system_mgr.hxx
ignore resets for now because every z/Z key press would trigger a call to NOAA. We...
[flightgear.git] / src / Systems / system_mgr.hxx
index c16201424c4efccd944f492677703b819b14b7e3..02c102a7e87e36c815bbcc92458e268e2ee364bd 100644 (file)
 #endif
 
 #include <simgear/compiler.h>
-
-#include <Main/fgfs.hxx>
-
-#include <vector>
-
-SG_USING_STD(vector);
+#include <simgear/structure/subsystem_mgr.hxx>
 
 
 /**
@@ -30,21 +25,12 @@ SG_USING_STD(vector);
  * In the initial draft, the systems present are hard-coded, but they
  * will soon be configurable for individual aircraft.
  */
-class FGSystemMgr : public FGSubsystem
+class FGSystemMgr : public SGSubsystemGroup
 {
 public:
 
     FGSystemMgr ();
     virtual ~FGSystemMgr ();
-
-    virtual void init ();
-    virtual void bind ();
-    virtual void unbind ();
-    virtual void update (double dt);
-
-private:
-    vector<FGSubsystem *> _systems;
-
 };
 
 #endif // __SYSTEM_MGR_HXX