#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VViewAutoGen.h" #include "MROTemperatureData.h" // namespace namespace View { /*! * \brief The VROTemperature class * \details The The ID_ROTemperatureData view * * \sa Model::MROTemperatureData * */ class VROTemperature : 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, p23Temp , 0 ) PROPERTY( float, p22Temp , 0 ) PROPERTY( float, p10Temp , 0 ) PROPERTY( float, p19Temp , 0 ) PROPERTY( float, boardTemp, 0 ) VIEW_DEC(VROTemperature, ROTemperatureData) }; }