/*! * * 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 ApplicationPost.cpp * \author (last) Behrouz NematiPour * \date (last) 08-Sep-2020 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * */ #include "ApplicationPost.h" // Qt // Project /*! * \brief ApplicationPost::ApplicationPost * \details Constructor * \param parent - QObject parent owner object. * Qt handles the children destruction by their parent objects life-cycle. */ ApplicationPost::ApplicationPost(QObject *parent) : QObject(parent) { } /*! * \brief ApplicationPost::start * \details Starting the post application initialization * \return */ bool ApplicationPost::start() { // TEST Code emit didPOSTFailed(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_TOUCH); emit didPOSTFailed(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_CAN); return false; }