/*! * * 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 VTreatmentStopData.h * \author (last) Behrouz NematiPour * \date (last) 07-Oct-2021 * \author (original) Behrouz NematiPour * \date (original) 07-Oct-2021 * */ #pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MTreatmentStopData.h" // namespace namespace View { /*! * \brief The VTreatmentStop class * \details View for Model's data representation. * * \sa Model::MTreatmentStop * */ class VTreatmentStop : public QObject { Q_OBJECT PROPERTY( quint32 , total , 0) PROPERTY( quint32 , countDown, 0) VIEW_DEC(VTreatmentStop, TreatmentStopData) }; }