File indexing completed on 2024-05-12 04:39:42

0001 /*
0002     SPDX-FileCopyrightText: 2009 Niko Sams <niko.sams@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef SELECTCOREDIALOG_H
0008 #define SELECTCOREDIALOG_H
0009 
0010 #include <QDialog>
0011 #include <QUrl>
0012 
0013 #include "ui_selectcoredialog.h"
0014 
0015 namespace KDevMI {
0016 
0017 class SelectCoreDialog : public QDialog
0018 {
0019     Q_OBJECT
0020 public:
0021     explicit SelectCoreDialog(QWidget *parent = nullptr);
0022     QUrl executableFile() const;
0023     QUrl core() const;
0024 
0025 private:
0026     Ui::SelectCoreDialog m_ui;
0027 };
0028 
0029 } // end of namespace KDevMI
0030 
0031 #endif