/*! * * Copyright (c) 2021 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 VDGPostSingleResultData.cpp * \author (last) Peter Lucia * \date (last) 19-May-2021 * \author (original) Peter Lucia * \date (original) 19-May-2021 * */ #include "VDGPostSingleResultData.h" // Project #include "GuiController.h" using namespace View; VIEW_DEF(VDGPostSingleResult, DGPostSingleResultData) /*! * \brief VDGPostSingleResult::onActionReceive * Called when the DG self test has a result * \param vData - contains the index of the test and its result */ void VDGPostSingleResult::onActionReceive(const DGPostSingleResultData &vData) { LOG_EVENT(QString("DG power on self test with index %1 completed with result %3") .arg(vData.mIndex) .arg(vData.mResult)); }