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.

31 lines
441 B
C++

#ifndef IMPORTDIALOG_H
#define IMPORTDIALOG_H
#include <QDialog>
#include <QMetaObject>
#include "iservice.h"
namespace Ui {
class ImportDialog;
}
class ImportDialog : public QDialog
{
Q_OBJECT
public:
explicit ImportDialog(QWidget *parent = 0);
~ImportDialog();
QString fileName();
QString separator();
private slots:
void on_btnFile_clicked();
private:
Ui::ImportDialog *ui;
};
#endif // IMPORTDIALOG_H