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

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     crypto/gui/encryptemailwizard.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2008 Klarälvdalens Datakonsult AB
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #pragma once
0011 
0012 #include <crypto/gui/signencryptwizard.h>
0013 
0014 namespace Kleo
0015 {
0016 namespace Crypto
0017 {
0018 namespace Gui
0019 {
0020 
0021 class EncryptEMailWizard : public SignEncryptWizard
0022 {
0023     Q_OBJECT
0024 public:
0025     explicit EncryptEMailWizard(QWidget *parent = nullptr, Qt::WindowFlags flags = {});
0026     ~EncryptEMailWizard() override;
0027 };
0028 
0029 }
0030 }
0031 }