File indexing completed on 2024-11-24 04:50:43

0001 // SPDX-FileCopyrightText: 2023 Claudio Cambra <claudio.cambra@kde.org>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 #include "identitycryptographyeditorbackendfactory.h"
0005 
0006 #include "identitycryptographybackend.h"
0007 
0008 KIdentityManagementQuick::CryptographyEditorBackend *IdentityCryptographyEditorBackendFactory::cryptoEditorBackend() const
0009 {
0010     const auto cryptoBackend = QSharedPointer<IdentityCryptographyBackend>::create();
0011     return new KIdentityManagementQuick::CryptographyEditorBackend(nullptr, std::move(cryptoBackend));
0012 }
0013 
0014 #include "moc_identitycryptographyeditorbackendfactory.cpp"