File indexing completed on 2024-05-12 05:52:48

0001 /*
0002  * SPDX-License-Identifier: GPL-3.0-or-later
0003  * SPDX-FileCopyrightText: 2020 Johan Ouwerkerk <jm.ouwerkerk@gmail.com>
0004  */
0005 #include "job.h"
0006 
0007 namespace test
0008 {
0009     void TestJob::finish(void)
0010     {
0011         Q_EMIT finished();
0012     }
0013 
0014     void TestJob::run(void)
0015     {
0016         Q_EMIT running();
0017     }
0018 
0019     JobSignals::JobSignals(QObject *parent): QObject(parent)
0020     {
0021     }
0022 }