23 lines
387 B
C
23 lines
387 B
C
|
#ifndef IMPORTBNINPROGRAMDLG_H
|
|||
|
#define IMPORTBNINPROGRAMDLG_H
|
|||
|
|
|||
|
#include <LoQClass/loqdialog.h>
|
|||
|
|
|||
|
namespace Ui {
|
|||
|
class ImportBnInProgramDlg;
|
|||
|
}
|
|||
|
|
|||
|
class ImportBnInProgramDlg : public LoQDialog
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
|
|||
|
public:
|
|||
|
explicit ImportBnInProgramDlg(QWidget *parent = nullptr);
|
|||
|
~ImportBnInProgramDlg();
|
|||
|
|
|||
|
private:
|
|||
|
Ui::ImportBnInProgramDlg *ui;
|
|||
|
};
|
|||
|
|
|||
|
#endif // IMPORTBNINPROGRAMDLG_H
|