#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VViewAutoGen.h" #include "MDDConductivityData.h" // namespace namespace View { /*! * \brief The VDDConductivity class * \details The The ID_DDConductivityData view * * \sa Model::MDDConductivityData * */ class VDDConductivity : 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( float, d17Cond, 0 ) PROPERTY( float, d27Cond, 0 ) PROPERTY( float, d29Cond, 0 ) PROPERTY( float, d43Cond, 0 ) VIEW_DEC(VDDConductivity, DDConductivityData) }; }