Index: sources/model/hd/data/treatment/MTreatmentHeparinData.h =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r93b7d7da5dea9e0392e139b59117eb0315d6c343 --- sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision 93b7d7da5dea9e0392e139b59117eb0315d6c343) @@ -36,8 +36,9 @@ * * | Payload || * | || - * | #1:(F32) | \ref Data::mCumulative | - * | #2:(F32) | \ref Data::mTarget | + * | #1:(F32) | \ref Data::mCumulative | + * | #2:(F32) | \ref Data::mTarget | + * | #2:(F32) | \ref Data::mTimeRemaining | * * \sa Data * \sa MAdjustHeparinReq : Heparin Request @@ -59,8 +60,9 @@ QVariantList parameters() const override; struct { - Types::F32 mCumulative ; - Types::F32 mTarget ; + Types::F32 mCumulative ; + Types::F32 mTarget ; + Types::F32 mTimeRemaining ; } _data; public: @@ -70,8 +72,9 @@ QString infoText() const override { return QString("Heparin") ; } struct Data { - float mCumulative = 0; ///< Cumulative volume of all Heparin deliveries during current treatment - float mTarget = 0; ///< Target volume of all Heparin deliveries during current treatment + float mCumulative = 0; ///< Cumulative volume of all Heparin deliveries during current treatment + float mTarget = 0; ///< Target volume of all Heparin deliveries during current treatment + float mTimeRemaining = 0; ///< Time remaining heparing time remaining }; public: