/*! * * 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 VTreatmentHeparinData.h * \author (last) Behrouz NematiPour * \date (last) 27-Oct-2022 * \author (original) Behrouz NematiPour * \date (original) 11-Apr-2021 * */ #pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MTreatmentHeparinData.h" // namespace namespace View { /*! * \brief The VTreatmentHeparin class * \details View for Model's data representation. * * \sa Model::MTreatmentHeparin * */ class VTreatmentHeparin : public QObject { Q_OBJECT PROPERTY( float , cumulative , 0) PROPERTY( float , target , 0) PROPERTY( float , timeRemaining , 0) VIEW_DEC(VTreatmentHeparin, TreatmentHeparinData) }; }