File indexing completed on 2024-05-12 16:42:10

0001 /*
0002     SPDX-FileCopyrightText: 2017 Ralf Habacker <ralf.habacker@freenet.de>
0003     SPDX-FileCopyrightText: 2017 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KTEMPLATEEXPORTDLG_H
0008 #define KTEMPLATEEXPORTDLG_H
0009 
0010 #include <QDialog>
0011 
0012 namespace Ui {
0013 class KTemplateExportDlg;
0014 }
0015 
0016 class KTemplateExportDlg : public QDialog
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit KTemplateExportDlg(QWidget *parent = nullptr);
0022     ~KTemplateExportDlg();
0023 
0024     QString title() const;
0025     QString shortDescription() const;
0026     QString longDescription() const;
0027 
0028 private:
0029     Ui::KTemplateExportDlg *ui;
0030 };
0031 
0032 #endif // KTEMPLATEEXPORTDLG_H