You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
381 B
C
28 lines
381 B
C
8 years ago
|
#ifndef IMPORTDIALOG_H
|
||
|
#define IMPORTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ImportDialog;
|
||
|
}
|
||
|
|
||
|
class ImportDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ImportDialog(QWidget *parent = 0);
|
||
|
~ImportDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_accepted();
|
||
|
|
||
|
void on_btnFile_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::ImportDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // IMPORTDIALOG_H
|