/*! * * Copyright (c) 2019-2020 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 vtreatmentadjustmentflows.h * \date 5/19/2020 * \author Behrouz NematiPour * */ #pragma once // Qt #include // Project #include "vtreatmentadjustmentsresponse.h" namespace View { class VTreatmentAdjustmentFlows : public VTreatmentAdjustmentsResponse { Q_OBJECT // friends friend class ::tst_views; // 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 // has been manually tested that it works perfectly fine TRIGGER( bool , adjustmentFlow , 0) // coco end // Treatment Blood/Dialysate Flow data PROPERTY( quint32 , bloodFlow_FlowSetPoint , 0) PROPERTY( quint32 , dialysateFlow_FlowSetPoint , 0) VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentFlows, AdjustBloodDialysateResponseData) }; }