/*! * * Copyright (c) 2019-2020 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) 12-Feb-2021 * \author (original) Behrouz NematiPour * \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) VIEW_DEC(VDGDrainPump, DGDrainPumpData) }; }