]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/instrument_mgr.hxx
- Code cleanups.
[flightgear.git] / src / Instrumentation / instrument_mgr.hxx
index 68a2294045072ff066e9443ce29f6411e87f37c3..0d0069733b7bb1bd00e91080b8799b46bd9afe99 100644 (file)
 #endif
 
 #include <simgear/compiler.h>
-
-#include <Main/fgfs.hxx>
-
-#include <vector>
-
-SG_USING_STD(vector);
+#include <simgear/structure/subsystem_mgr.hxx>
 
 
 /**
@@ -30,13 +25,16 @@ SG_USING_STD(vector);
  * In the initial draft, the instruments present are hard-coded, but they
  * will soon be configurable for individual aircraft.
  */
-class FGInstrumentMgr : public FGSubsystemGroup
+class FGInstrumentMgr : public SGSubsystemGroup
 {
 public:
 
     FGInstrumentMgr ();
     virtual ~FGInstrumentMgr ();
+    bool build ();
 
+private:
+    SGPropertyNode *config_props;
 };
 
 #endif // __INSTRUMENT_MGR_HXX