File indexing completed on 2024-05-19 05:06:51

0001 /*
0002     SPDX-FileCopyrightText: 2005-2009 Thomas Baumgart <tbaumgart@kde.org>
0003     SPDX-FileCopyrightText: 2017-2018 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KMYMONEYFILEINFODLG_H
0008 #define KMYMONEYFILEINFODLG_H
0009 
0010 #include "kmm_base_dialogs_export.h"
0011 
0012 // ----------------------------------------------------------------------------
0013 // QT Includes
0014 
0015 #include <QDialog>
0016 
0017 // ----------------------------------------------------------------------------
0018 // KDE Includes
0019 
0020 // ----------------------------------------------------------------------------
0021 // Project Includes
0022 
0023 namespace Ui {
0024 class KMyMoneyFileInfoDlg;
0025 }
0026 
0027 /**
0028   * @author Thomas Baumgart
0029   */
0030 
0031 class KMM_BASE_DIALOGS_EXPORT KMyMoneyFileInfoDlg : public QDialog
0032 {
0033     Q_OBJECT
0034     Q_DISABLE_COPY(KMyMoneyFileInfoDlg)
0035 
0036 public:
0037     explicit KMyMoneyFileInfoDlg(QWidget *parent = nullptr);
0038     ~KMyMoneyFileInfoDlg();
0039 
0040 private:
0041     Ui::KMyMoneyFileInfoDlg *ui;
0042 };
0043 
0044 #endif