X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Fturn_indicator.hxx;h=04a8e6fcb10132a5d1968265629d42d5148aada3;hb=fe0a703a192a37b96aa4f6048c8e542c24671705;hp=5d5028cf1c49805752d817472b75e0b6c6f5def2;hpb=980012e1682fdb27c9b9ec27edea0b549d603f9d;p=flightgear.git diff --git a/src/Instrumentation/turn_indicator.hxx b/src/Instrumentation/turn_indicator.hxx index 5d5028cf1..04a8e6fcb 100644 --- a/src/Instrumentation/turn_indicator.hxx +++ b/src/Instrumentation/turn_indicator.hxx @@ -25,22 +25,22 @@ * * Input properties: * - * /instrumentation/turn-indicator/serviceable - * /instrumentation/turn-indicator/spin + * /instrumentation/"name"/serviceable + * /instrumentation/"name"/spin * /orientation/roll-rate-degps * /orientation/yaw-rate-degps * /systems/electrical/outputs/turn-coordinator * * Output properties: * - * /instrumentation/turn-indicator/indicated-turn-rate + * /instrumentation/"name"/indicated-turn-rate */ class TurnIndicator : public SGSubsystem { public: - TurnIndicator (); + TurnIndicator ( SGPropertyNode *node ); virtual ~TurnIndicator (); virtual void init (); @@ -53,6 +53,9 @@ private: Gyro _gyro; double _last_rate; + std::string _name; + int _num; + SGPropertyNode_ptr _roll_rate_node; SGPropertyNode_ptr _yaw_rate_node; SGPropertyNode_ptr _electric_current_node;