29 lines
460 B
C
29 lines
460 B
C
|
|
#ifndef NEWMEASUREANALYSISDLG_H
|
||
|
|
#define NEWMEASUREANALYSISDLG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class NewMeasureAnalysisDlg;
|
||
|
|
}
|
||
|
|
|
||
|
|
class NewMeasureAnalysisDlg : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit NewMeasureAnalysisDlg(QWidget *parent = nullptr);
|
||
|
|
~NewMeasureAnalysisDlg();
|
||
|
|
|
||
|
|
private:
|
||
|
|
void initialization();
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void on_btn_ok_clicked();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::NewMeasureAnalysisDlg *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // NEWMEASUREANALYSISDLG_H
|