/*! * * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file VDGDrainPumpData.h * \author (last) Behrouz NematiPour * \date (last) 24-Mar-2023 * \author (original) Behrouz NemaiPour * \date (original) 02-Jul-2020 * */ #pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MDGDrainPumpData.h" // namespace namespace View { /*! * \brief The VDGDrainPump class * \details View for Model's Data representation. * * \sa Model::MDGDrainPump * */ class VDGDrainPump : public QObject { Q_OBJECT PROPERTY( quint32 , rpmi , 0) PROPERTY( quint32 , dac , 0) PROPERTY( quint32 , state , 0) PROPERTY( quint32 , rpmo , 0) PROPERTY( float , targetFLPMO , 0) PROPERTY( float , currentA , 0) PROPERTY( quint32 , direction , 0) PROPERTY( quint32 , maxonRPM , 0) VIEW_DEC(VDGDrainPump, DGDrainPumpData) }; }