/*! * * 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 VPreTreatmentAdjustmentDisposablesConfirm.cpp * \author (last) Behrouz NematiPour * \date (last) 22-Mar-2021 * \author (original) Behrouz NematiPour * \date (original) 22-Mar-2021 * */ #include "VPreTreatmentAdjustmentDisposablesConfirm.h" // Project #include "GuiController.h" VIEW_DEF_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentDisposablesConfirm) /*! \brief Connection Initializer \details All the class signal/slot connections are defined here. */ void View::VPreTreatmentAdjustmentDisposablesConfirm::initConnections() { ADJUST_VIEW_CONNECTION(AdjustDisposablesConfirmRequestData); } /*! * \brief View::VPreTreatmentAdjustmentDisposablesConfirm::doConfirm * \details the invocable slot to send user's Disposables installation confirm */ void View::VPreTreatmentAdjustmentDisposablesConfirm::doConfirm() { AdjustDisposablesConfirmRequestData data; emit didAdjustment(data); }