/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2019 Adriaan de Groot * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * */ #include "JobExample.h" namespace Calamares { QString NamedJob::prettyName() const { return tr( "Example job (%1)" ).arg( m_name ); } JobResult GoodJob::exec() { return JobResult::ok(); } JobResult FailJob::exec() { return JobResult::error( tr( "Job failed (%1)" ).arg( m_name ), tr( "Programmed job failure was explicitly requested." ) ); } } // namespace Calamares