#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VViewAutoGen.h" #include "MDDGenDialysateRequestData.h" // namespace namespace View { /*! * \brief The VDDGenDialysateRequest class * \details The The ID_DDGenDialysateRequestData view * * \sa Model::MDDGenDialysateRequestData * */ class VDDGenDialysateRequest : public QObject { Q_OBJECT // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI TRIGGER( bool , adjustment , 0 ) PROPERTY( quint32, start , 0 ) PROPERTY( float , dialRate , 0 ) PROPERTY( float , ufRate , 0 ) PROPERTY( float , dialTemp , 0 ) PROPERTY( quint32, bypassDialyzer, 0 ) PROPERTY( quint32, acidType , 0 ) PROPERTY( quint32, bicarbType , 0 ) VIEW_DEC(VDDGenDialysateRequest, DDGenDialysateRequestData) }; }