#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MTreatmentHDFData.h" // namespace namespace View { /*! * \brief The VTreatmentHDF class * \details View for Model's data representation. * * \sa Model::VTreatmentHDF * */ class VTreatmentHDF : public QObject { Q_OBJECT PROPERTY( quint32 , hdfState , 0) PROPERTY( quint32 , autoSubState , 0) PROPERTY( float , requestedRate , 0) PROPERTY( float , targetTMP , 0) PROPERTY( float , currentRate , 0) PROPERTY( float , currentTMP , 0) PROPERTY( float , mRequestedVolume, 0) PROPERTY( float , totalVolume , 0) PROPERTY( quint32 , isHDFRequested , 0) VIEW_DEC(VTreatmentHDF, TreatmentHDFData) }; }