/*! * * Copyright (c) 2020-2022 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 VPowerOff.h * \author (last) Behrouz NematiPour * \date (last) 10-Aug-2021 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * */ #pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MAdjustPowerOff.h" // namespace namespace View { /*! * \brief The VDGDrainPump class * \details View for Model's Data representation. * * \sa Model::MPowerOff * */ class VPowerOff : public QObject { Q_OBJECT // coco begin validated: This property is power off request data and is always true // to be always trigger the GUI // also since the signal passe parameter value is used the property getter in not currently used. // manually tested and all of them are working. TRIGGER( quint8, poweroff, 0) // coco end VIEW_DEC(VPowerOff, PowerOffData) }; }