File indexing completed on 2024-04-14 05:43:32

0001 /*
0002     SPDX-FileCopyrightText: 2002 Jean-Baptiste Mardelle <bj@altern.org>
0003     SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011 Rolf Eike Beer <kde@opensource.sf-tec.de>
0004     SPDX-FileCopyrightText: 2011 Luis Ángel Fernández Fernández <laffdez@gmail.com>
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 
0009 #ifndef KEYEXPORT_H
0010 #define KEYEXPORT_H
0011 
0012 #include "ui_keyexport.h"
0013 
0014 #include <QDialog>
0015 #include <QStringList>
0016 
0017 class KeyExport : public QDialog, public Ui_KeyExport
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit KeyExport(QWidget *parent = nullptr, const QStringList &keyservers = QStringList());
0023 
0024 protected:
0025         void accept() override;
0026 };
0027 
0028 #endif