Index: sources/view/hd/adjustment/VTreatmentAdjustmentDuration.h =================================================================== diff -u -rc503f43840024e18650c1ac558448dd0f3b70427 -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 --- sources/view/hd/adjustment/VTreatmentAdjustmentDuration.h (.../VTreatmentAdjustmentDuration.h) (revision c503f43840024e18650c1ac558448dd0f3b70427) +++ sources/view/hd/adjustment/VTreatmentAdjustmentDuration.h (.../VTreatmentAdjustmentDuration.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) @@ -24,6 +24,10 @@ namespace View { +/*! + * \brief The VTreatmentAdjustmentDuration class + * \details View for Model's Data representation. + */ class VTreatmentAdjustmentDuration : public VTreatmentAdjustmentResponseBase { Q_OBJECT @@ -50,12 +54,22 @@ // ----- Adjust Duration public slots: + /*! + * \brief doAdjustment + * \details the invocable slot to adjust the treatment duration + * \param vDuration - treatment duration + */ void doAdjustment(quint32 vDuration) { _data.duration = vDuration; emit didAdjustment(_data); } signals: + /*! + * \brief didAdjustment + * \details the notification signal to adjust the treatment duration + * \param vData - data model for the duration adjustment request + */ void didAdjustment(const AdjustDurationRequestData &vData); }; }