/*! * * Copyright (c) 2020-2024 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) 22-Apr-2024 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * */ #include "ApplicationPost.h" // Qt #include #include #include // Project #include "Logger.h" #include "FileHandler.h" /*! * \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 */ void ApplicationPost::start() { _isDone = true; emit didDone(_isDone); }