Index: sources/model/hd/data/treatment/MTreatmentHeparinData.h =================================================================== diff -u -r88563177f10f20ced98750b2e40036201728131d -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision 88563177f10f20ced98750b2e40036201728131d) +++ sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,15 +1,15 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file MTreatmentHeparinData.h * \author (last) Behrouz NematiPour - * \date (last) 20-Nov-2020 + * \date (last) 27-Oct-2022 * \author (original) Behrouz NematiPour - * \date (original) 20-Nov-2020 + * \date (original) 11-Apr-2021 * */ #pragma once @@ -37,6 +37,7 @@ * | Payload || * | || * | #1:(F32) | \ref Data::mCumulative | + * | #2:(F32) | \ref Data::mTarget | * * \sa Data * \sa MAdjustHeparinReq : Heparin Request @@ -45,9 +46,9 @@ *

Logging info

* | || * | || - * | typeText | Datum | - * | unitText | HD | - * | infoText | HeparinData | + * | typeText | Datum | + * | unitText | HD | + * | infoText | Heparin | * */ class MTreatmentHeparin : public MAbstract { @@ -59,16 +60,18 @@ struct { Types::F32 mCumulative ; + Types::F32 mTarget ; } _data; public: - Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } - QString infoText() const override { return QString("HeparinData") ; } + Type_Enum typeText() const override { return Type_Enum::eDatum ; } + Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + 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 }; public: