File indexing completed on 2024-06-23 05:13:48

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     conf/smartcardconfigpage.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2022 g10 Code GmbH
0006     SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #pragma once
0012 #include <KCModule>
0013 #include <kcmutils_version.h>
0014 
0015 #include <memory>
0016 
0017 namespace Kleo
0018 {
0019 namespace Config
0020 {
0021 
0022 class SmartCardConfigurationPage : public KCModule
0023 {
0024     Q_OBJECT
0025 public:
0026     explicit SmartCardConfigurationPage(QObject *parent, const KPluginMetaData &data = {});
0027     ~SmartCardConfigurationPage() override;
0028 
0029     void load() override;
0030     void save() override;
0031     void defaults() override;
0032 
0033 private:
0034     class Private;
0035     std::unique_ptr<Private> d;
0036 };
0037 
0038 }
0039 }