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.
25 lines
474 B
C++
25 lines
474 B
C++
#ifndef NMWXWELLLAYERDLG_H
|
|
#define NMWXWELLLAYERDLG_H
|
|
|
|
#include "iDlgBase.h"
|
|
#include "nmSubWxs_global.h"
|
|
|
|
class QLineEdit;
|
|
|
|
class NM_SUB_WXS_EXPORT nmWxWellLayerDlg : public iDlgBase {
|
|
Q_OBJECT
|
|
public:
|
|
nmWxWellLayerDlg(QVector<double> *vLayerHeights = NULL);
|
|
|
|
private:
|
|
void initUI();
|
|
|
|
private:
|
|
QVector<double>* m_vLayerHeights;
|
|
void initLayerHeights();
|
|
private slots:
|
|
void on_layerHeightChanged(QString);
|
|
};
|
|
|
|
#endif // NMWXWELLLAYERDLG_H
|