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