/*! * * Copyright (c) 2021-2025 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 VTreatmentTime.h * \author (last) Behrouz NematiPour * \date (last) 10-Aug-2021 * \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 "MTreatmentTimeData.h" // namespace namespace View { /*! * \brief The VTreatmentTime class * \details View for Model's data representation. * * \sa Model::MTreatmentTime * */ class VTreatmentTime : public QObject { Q_OBJECT PROPERTY( quint32 , time_Total , 0) PROPERTY( quint32 , time_Elapsed , 0) PROPERTY( quint32 , time_Remaining , 0) PROPERTY( bool , time_IsLeft , 0) VIEW_DEC(VTreatmentTime, TreatmentTimeData) }; }