X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FSystems%2Fsystem_mgr.hxx;h=a6260a531d921d3213c1cee94b63666ef16be58b;hb=3ccfdac8fe65b1a933148b01d59fad8b764d989a;hp=02c102a7e87e36c815bbcc92458e268e2ee364bd;hpb=980012e1682fdb27c9b9ec27edea0b549d603f9d;p=flightgear.git diff --git a/src/Systems/system_mgr.hxx b/src/Systems/system_mgr.hxx index 02c102a7e..a6260a531 100644 --- a/src/Systems/system_mgr.hxx +++ b/src/Systems/system_mgr.hxx @@ -16,14 +16,14 @@ #endif #include +#include #include /** * Manage aircraft systems. * - * In the initial draft, the systems present are hard-coded, but they - * will soon be configurable for individual aircraft. + * Multiple aircraft systems can be configured for each aircraft. */ class FGSystemMgr : public SGSubsystemGroup { @@ -31,6 +31,11 @@ public: FGSystemMgr (); virtual ~FGSystemMgr (); + bool build (SGPropertyNode* config_props); + +private: + bool enabled; + }; #endif // __SYSTEM_MGR_HXX