File indexing completed on 2024-04-21 15:00:11

0001 /*
0002     SPDX-FileCopyrightText: 2022 David Faure <faure@kde.org>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 #include "workerfactory.h"
0006 
0007 namespace KIO
0008 {
0009 
0010 WorkerFactory::WorkerFactory(QObject *parent)
0011     : QObject(parent)
0012 {
0013 }
0014 
0015 } // namespace KIO
0016 
0017 #include "moc_workerfactory.cpp"