File indexing completed on 2024-05-12 05:25:33

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 "backupresourcefilejobimpl.h"
0008 #include "resourceconverterimpl.h"
0009 
0010 BackupResourceFileJobImpl::BackupResourceFileJobImpl(QObject *parent)
0011     : BackupResourceFileJobBase(parent)
0012 {
0013 }
0014 
0015 BackupResourceFileJobImpl::~BackupResourceFileJobImpl() = default;
0016 
0017 QString BackupResourceFileJobImpl::resourcePath(const QString &identifier) const
0018 {
0019     ResourceConverterImpl converter;
0020     const QString url = converter.resourcePath(identifier);
0021     return url;
0022 }
0023 
0024 #include "moc_backupresourcefilejobimpl.cpp"