22 lines
324 B
C
22 lines
324 B
C
|
#if !defined(__IMPORTDLG_H)
|
||
|
#define __IMPORTDLG_H
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class ImportDialog;
|
||
|
}
|
||
|
|
||
|
class ImportDialog : public QDialog {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ImportDialog(QWidget *parent);
|
||
|
~ImportDialog();
|
||
|
protected:
|
||
|
void changeEvent(QEvent *e);
|
||
|
private:
|
||
|
Ui::ImportDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // __IMPORTDLG_H
|