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
31 lines
441 B
C
8 years ago
|
#ifndef IMPORTDIALOG_H
|
||
|
#define IMPORTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
8 years ago
|
#include <QMetaObject>
|
||
|
#include "iservice.h"
|
||
8 years ago
|
|
||
|
namespace Ui {
|
||
|
class ImportDialog;
|
||
|
}
|
||
|
|
||
|
class ImportDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ImportDialog(QWidget *parent = 0);
|
||
|
~ImportDialog();
|
||
|
|
||
8 years ago
|
QString fileName();
|
||
|
QString separator();
|
||
8 years ago
|
|
||
8 years ago
|
private slots:
|
||
8 years ago
|
void on_btnFile_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::ImportDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // IMPORTDIALOG_H
|