Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h =================================================================== diff -u -r29a44b6e5908da155195c138b5e522fa8ce90fb4 -rb2db816026524a19086e900eef867d7f5a3aa6f2 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision 29a44b6e5908da155195c138b5e522fa8ce90fb4) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision b2db816026524a19086e900eef867d7f5a3aa6f2) @@ -176,39 +176,42 @@ * * | Payload || * | || - * | #1:(U32) | \ref bloodFlowRate | - * | #2:(U32) | \ref dialysateFlowRate | - * | #3:(F32) | \ref dialysateTemperature | - * | #4:(U32) | \ref acidConcentrate | - * | #5:(U32) | \ref bicarbConcentrate | - * | #6:(U32) | \ref treatmentModality | - * | #7:(U32) | \ref hepatitus | - * | #8:(U32) | \ref sodium | - * | #9:(U32) | \ref bicarbonate | + * | #1:(U32) | \ref bloodFlowRate | + * | #2:(U32) | \ref dialysateFlowRate | + * | #3:(F32) | \ref dialysateTemperature | + * | #4:(U32) | \ref acidConcentrate | + * | #5:(U32) | \ref acidConcentrateConversionFactor | + * | #6:(U32) | \ref bicarbConcentrate | + * | #7:(U32) | \ref treatmentModality | + * | #8:(U32) | \ref hepatitus | + * | #9:(U32) | \ref sodium | + * | #10:(U32)| \ref bicarbonate | * */ class MAdjustSetPointsReq : public MModel { public: - quint32 bloodFlowRate = 0; - quint32 dialysateFlowRate = 0; - float dialysateTemperature = 0; - quint32 acidConcentrate = 0; - quint32 bicarbConcentrate = 0; - quint32 treatmentModality = 0; - quint32 hepatitus = 0; - quint32 sodium = 0; - quint32 bicarbonate = 0; + quint32 bloodFlowRate = 0; + quint32 dialysateFlowRate = 0; + float dialysateTemperature = 0; + quint32 acidConcentrate = 0; + float acidConcentrateConversionFactor = 0; + quint32 bicarbConcentrate = 0; + quint32 treatmentModality = 0; + quint32 hepatitus = 0; + quint32 sodium = 0; + quint32 bicarbonate = 0; QString toString() { - return toString({bloodFlowRate, - dialysateFlowRate, - dialysateTemperature, - acidConcentrate, - bicarbConcentrate, - treatmentModality, - hepatitus, - sodium, - bicarbonate}); + return toString({ bloodFlowRate, + dialysateFlowRate, + dialysateTemperature, + acidConcentrate, + acidConcentrateConversionFactor, + bicarbConcentrate, + treatmentModality, + hepatitus, + sodium, + bicarbonate}); } static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustSetPointsReq", vParameters);