/*! * * Copyright (c) 2020-2025 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 VDGPressuresData.h * \author (last) Behrouz NematiPour * \date (last) 10-Feb-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 "MDGPressuresData.h" // namespace namespace View { /*! * \brief The VDGPressures class * \details View for Model's Data representation. * * \sa Model::MDGPressures * */ class VDGPressures : public QObject { Q_OBJECT PROPERTY( float , roInletPSI , 0) PROPERTY( float , roOutletPSI , 0) PROPERTY( float , drainInletPSI , 0) PROPERTY( float , drainOutletPSI , 0) PROPERTY( float , barometricPSI , 0) VIEW_DEC(VDGPressures, DGPressuresData) }; }