File indexing completed on 2024-12-22 05:05:23

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "exportakregatorjobinterfacetestimpl.h"
0008 
0009 ExportAkregatorJobInterfaceTestImpl::ExportAkregatorJobInterfaceTestImpl(QObject *parent,
0010                                                                          Utils::StoredTypes typeSelected,
0011                                                                          ArchiveStorage *archiveStorage,
0012                                                                          int numberOfStep)
0013     : ExportAkregatorJobInterface(parent, typeSelected, archiveStorage, numberOfStep)
0014 {
0015 }
0016 
0017 ExportAkregatorJobInterfaceTestImpl::~ExportAkregatorJobInterfaceTestImpl() = default;
0018 
0019 QString ExportAkregatorJobInterfaceTestImpl::adaptNewResourceUrl(bool overwriteResources, const KSharedConfig::Ptr &resourceConfig, const QString &storePath)
0020 {
0021     Q_UNUSED(overwriteResources);
0022     Q_UNUSED(resourceConfig);
0023     Q_UNUSED(storePath);
0024     Q_UNREACHABLE();
0025     return {};
0026 }
0027 
0028 QString ExportAkregatorJobInterfaceTestImpl::createResource(const QString &resources,
0029                                                             const QString &name,
0030                                                             const QMap<QString, QVariant> &settings,
0031                                                             bool synchronizeTree)
0032 {
0033     Q_UNUSED(resources);
0034     Q_UNUSED(settings);
0035     Q_UNUSED(name);
0036     Q_UNUSED(synchronizeTree);
0037     Q_UNREACHABLE();
0038     return {};
0039 }
0040 
0041 #include "moc_exportakregatorjobinterfacetestimpl.cpp"