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 "importakregatorjobinterfacetestimpl.h" 0008 0009 ImportAkregatorJobInterfaceTestImpl::ImportAkregatorJobInterfaceTestImpl(QObject *parent, 0010 Utils::StoredTypes typeSelected, 0011 ArchiveStorage *archiveStorage, 0012 int numberOfStep) 0013 : ImportAkregatorJobInterface(parent, typeSelected, archiveStorage, numberOfStep) 0014 { 0015 } 0016 0017 ImportAkregatorJobInterfaceTestImpl::~ImportAkregatorJobInterfaceTestImpl() = default; 0018 0019 Akonadi::Collection::Id ImportAkregatorJobInterfaceTestImpl::convertFolderPathToCollectionId(const QString &path) 0020 { 0021 Q_UNUSED(path); 0022 Q_UNREACHABLE(); 0023 return -1; 0024 } 0025 0026 QString ImportAkregatorJobInterfaceTestImpl::adaptNewResourceUrl(bool overwriteResources, const KSharedConfig::Ptr &resourceConfig, const QString &storePath) 0027 { 0028 Q_UNUSED(overwriteResources); 0029 Q_UNUSED(resourceConfig); 0030 Q_UNUSED(storePath); 0031 Q_UNREACHABLE(); 0032 return {}; 0033 } 0034 0035 #include "moc_importakregatorjobinterfacetestimpl.cpp"