Index: sources/view/hd/adjustment/VTreatmentAdjustmentFlows.h =================================================================== diff -u -rc503f43840024e18650c1ac558448dd0f3b70427 -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 --- sources/view/hd/adjustment/VTreatmentAdjustmentFlows.h (.../VTreatmentAdjustmentFlows.h) (revision c503f43840024e18650c1ac558448dd0f3b70427) +++ sources/view/hd/adjustment/VTreatmentAdjustmentFlows.h (.../VTreatmentAdjustmentFlows.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) @@ -24,6 +24,10 @@ namespace View { +/*! + * \brief The VTreatmentAdjustmentFlows class + * \details View for Model's Data representation. + */ class VTreatmentAdjustmentFlows : public VTreatmentAdjustmentResponseBase { Q_OBJECT @@ -32,7 +36,6 @@ AdjustBloodDialysateRequestData _data; - // coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI @@ -48,14 +51,24 @@ // ----- Adjust Blood/Dialysate Flows public slots: + /*! + * \brief doAdjustment + * \details the invocable slot to adjust the treatment blood and dialysate flow rates + * \param vBloodFlow + * \param vDialysateFlow + */ void doAdjustment(quint32 vBloodFlow, quint32 vDialysateFlow) { _data. bloodFlow = vBloodFlow; _data.dialysateFlow = vDialysateFlow; emit didAdjustment(_data); } signals: + /*! + * \brief didAdjustment + * \details the notification signal to adjust the blood and dialysate flow rates + * \param vData - data model for the blood and dialysate adjustment request + */ void didAdjustment(const AdjustBloodDialysateRequestData &vData); }; - }