#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VViewAutoGen.h" #include "MTDAirTrapData.h" // namespace namespace View { /*! * \brief The VTDAirTrap class * \details The The ID_TDAirTrapData view * * \sa Model::MTDAirTrapData * */ class VTDAirTrap : 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, h17State , 0 ) PROPERTY( quint32, h16State , 0 ) PROPERTY( quint32, h17RawState , 0 ) PROPERTY( quint32, h16RawState , 0 ) PROPERTY( quint32, h13State , 0 ) PROPERTY( quint32, h20State , 0 ) PROPERTY( quint32, isAutoControlling, 0 ) VIEW_DEC(VTDAirTrap, TDAirTrapData) }; }