File indexing completed on 2025-02-02 05:08:35

0001 /*
0002     SPDX-FileCopyrightText: 2024 Laurent Montel <montel@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "accountconfigurationbase.h"
0010 #include "resource.h"
0011 
0012 class AccountConfigurationImpl : public AccountConfigurationBase
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit AccountConfigurationImpl(QObject *parent = nullptr);
0017     ~AccountConfigurationImpl() override;
0018 
0019 protected:
0020     LIBACCOUNTWIZARD_NO_EXPORT void createTransport() override;
0021     LIBACCOUNTWIZARD_NO_EXPORT void generateResource(const Resource::ResourceInfo &info) override;
0022 };